deven {Rosenbrock} | R Documentation |
Density function for the full rosenbrock function, with two vector parameters a and b.
deven(x,a,b,mu)
x |
Input vector. |
mu |
Density shift. |
a |
Parameters for odd index input. |
b |
Parameters for even index input. |
Returns the density value of the "even" Rosenbrock distribution at point x
for parameters mu,a
and b
.
x = rep(1,4) a = b = rep(2,2) mu = rep(1,2) deven(x = x,a = a,b = b,mu = mu)