powered by
The function lbound sets a minimum to the elements of a vector, ubound a maximum and bound both.
lbound
ubound
bound
lbound(x, m) ubound(x, M) bound(x, m, M)
double, vector to put in [m, M].
double, the minimum.
double, the maximum.
A vector with the values of x on which all values lower that m has been replaced by m and all values greater than M has been replace by M.
x
m
M
http://pgm-solutions.com/packages
# NOT RUN { K <- 1 x <- rpgm.rnorm(12, 0.5) lbound(x-K, 0) # }
Run the code above in your browser using DataLab