RFF_get | R Documentation |
Create a new RFF function
RFF_get(D = 2, M = 30, wave = sin, noise = 0, seed = NULL)
D |
Number of dimensions |
M |
Number of random waves |
wave |
Type of wave |
noise |
Standard deviation of random normal noise to add |
seed |
Seed to set before randomly selecting function |
A random wave function
func <- RFF_get(D=1)
curve(func)
f <- RFF_get(D=1, noise=.1)
curve(f(matrix(x,ncol=1)))
for(i in 1:100) curve(f(matrix(x,ncol=1)), add=TRUE, col=sample(2:8,1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.