dnWhiteNoise
- White-Noise Process
mu : | RealPos (pass by const reference) |
The mean of the process. | |
sigma : | RealPos (pass by const reference) |
The standard deviation of the process. | |
time : | RealPos (pass by const reference) |
The time that the process has run. |
# lets simulate
a <- rWhiteNoise(1000,mu=1,sigma=4,time=4)
# we expect a mean of 1
mean(a)
# create a random variable
x ~ dnWhiteNoise(mu=1.0,sigma=4,time=1)
x