Description Usage Arguments Author(s) References See Also Examples
Generates 1/f noise with a specified power or amplitude.
1 | one_over_f(gamma = 1, N = 200)
|
gamma |
spectral power, numeric, where 0 generates a white noise time series, 2 generates reddened noise. Defaults to 1 (pink). |
N |
length of the time series. |
Hank Stevens
J. M. Halley. Ecology, evolution and 1/f-noise. Trends in Ecology & Evolution, 11:33-37, 1996. O. L. Petchey, A. Gonzalez, and H. B. Wilson. Effects on population persistence: the interaction between environmental noise colour, intra-specific competition and space. Proceedings of the Royal Society of London Series B, 264:1841-1847, 1997. J. E. Cohen, C. M. Newman, A. E. Cohen, O. L. Petchey, and A. Gonzalez. Spectral mimicry: a method of synthesizing matching time series with different Fourier spectra. Circuits, Systems and Signal Processing, 18:431-442, 1999.
[spec_mimic()] to rearrange one vector, X, to mimic the spectrum of another vector, Y; [plot_f()] to plot the time series and the spectrogram of the series.
1 2 3 4 5 6 | set.seed(1)
time.series <- one_over_f(gamma=2, N=50)
plot(1:50, time.series, type='l', main="Reddened noise")
time.series <- one_over_f(gamma=0, N=50)
plot(1:50, time.series, type='l', main="White noise")
one_over_f()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.