powered by
Hill Function
hill_function(v, k = 1, m = 5, abs = TRUE)
The transformed vector v
v
Numeric vector
Numeric integer or decimal
Boolean to determine if diminishing scale m is a percentage or absolute value
m
Applies the Hill Function 1 - (k^m)(k^m + v^m) on the input vector, v
hill_function(c(1,0,0,0,10,0,0,0,20), k=10) hill_function(c(1,0,0,0,10,0,0,0,20), k=0.1, abs = FALSE) hill_function(c(1,0,0,0,10,0,0,0,20), k=10, m = 3)
Run the code above in your browser using DataLab