TITLE(rwiener @@ Simulation of Wiener process)
USAGE(
rwiener(end = 1, frequency = 1000)
)
ARGUMENTS(
ARG(end @@ the time of the last observation.)
ARG(frequency @@ the number of observations per unit of time.)
)
DESCRIPTION(
LANG(rwiener) returns a time series containing a simulated realization
of the Wiener process on the interval [0,LANG(end)]
)
EXAMPLES(
# simulate a Wiener process on [0,1] and plot it

x <- rwiener()
plot(x,type="l")
)
