gen_wn | R Documentation |
Simulates a Gaussian White Noise Process with variance parameter sigma^2.
gen_wn(N, sigma2 = 1)
N |
An |
sigma2 |
A |
wn A vec
containing the white noise.
Gaussian White Noise (WN) with parameter sigma^2 in R^{+}. This process is defined as X[t] ~ N(0,sigma^2) and is sometimes referred to as Angle (Velocity) Random Walk.
To generate the Gaussian White Noise (WN) process, we first obtain the standard deviation from the variance by taking a square root. Then, we sample N times from a N(0,sigma^2) distribution.
gen_wn(10, 1.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.