TestFunctions (version 0.2.0)

RFF_get: Create a new RFF function

Description

Create a new RFF function

Usage

RFF_get(D = 2, M = 30, wave = sin, noise = 0, seed = NULL)

Value

A random wave function

Arguments

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

Examples

Run this code
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))

Run the code above in your browser using DataLab