noise - Noise generator.
Inputs:
duration [FLOAT] [REQUIRED]: duration of resulting signal.
amplitude [BUFFER|FLOAT] [OPTIONAL]: amplitude of the noise, default to 1.
sampling [FLOAT] [OPTIONAL]: sampling rate, def 44100Hz.
interp [STRING] [OPTIONAL]: interpolation of resulting buffer, ’step’, ’linear’ or ’sine’.
seed [STRING] [OPTIONAL]: seed for the RNG, use hexadecimal 32-bit string, e.g: "0xDEADBEEF".
Outputs:
out [BUFFER]: output signal.
Uses the Mersenne-Twister algorithm to generate pseudo-random noise.