runif_arma: Simulate samples from a Uniform Distribution

Description Usage Arguments Value Examples

View source: R/RcppExports.R

Description

Generates random values from the C++11 Uniform Distribution.

Usage

1
runif_arma(n, start = 0, end = 1, seed = 183L)

Arguments

n

Number of observations to generate

start

Beginning range of values

end

End range of values

seed

Starting value for the Random Number Generator (RNG).

Value

A vector of random numbers from the Uniform distribution.

Examples

1
2
3
4
5
# Generate a random number
runif_arma(1, start = 2, end = 20)

# Generate two random numbers
runif_arma(2, start = 5, end = 30)

coatless/rc11 documentation built on May 13, 2019, 8:47 p.m.