A bounded version of rnorm

rnorm_bounded(n, mean = 0, sd = 1, min = -Inf, max = Inf)

Arguments

n

number of observations. If length(n) > 1, the length is taken to be the number required.

mean

vector of means.

sd

vector of standard deviations.

min

lower limits of the distribution.

max

upper limits of the distribution.

Value

Generates values with rnorm, bounded by [min, max]

Examples

rnorm_bounded(10)
#>  [1]  0.2393847 -0.8829728  0.6940236 -1.1082709  1.2618982  0.2523476
#>  [7]  1.4526125 -0.9466355  0.3450136  1.4407874