powered by
The function rbrownian is a C-level function which uses the Ziggurat in order to simulate the normal random variables.
rbrownian
rbrownian(n, m, b0=0, mu=0, sd=1, T=1, drop=TRUE, nthreads=1L)
integer, number of paths.
integer, number of steps, the step size will be T/m.
double, the initial value (or a vector of initial values of size n).
n
double, the mean.
double, the standard deviation.
double, the final date on which the brownian motion is simulated.
logical, if n = 1 and drop = TRUE then the function returns the single path of the brownian motion as a vector instead of a matrix.
n = 1
drop = TRUE
integer, the number of threads to use for parallelism.
Returns a n x m+1 matrix of n path of the brownian motion.
https://en.wikipedia.org/wiki/Brownian_motion
https://pgm-solutions.com/packages
# NOT RUN { rbrownian(5, 10) #rbrownian(5, 10, nthreads = maxthreads()) # }
Run the code above in your browser using DataLab