AnalysisLibErrType WhiteNoise (int numberOfElements, double amplitude, int seed, double *noise[]);
Generates an array of random numbers that are uniformly distributed between amplitude and amplitude.
/* The following code generates an array of random numbers between -5 and 5. */
double x[20], amp;
int n;
n = 20;
amp = 5.0;
WhiteNoise (n, amp, 17, x);
Input | ||
Name | Type | Description |
numberOfElements | integer | Number of elements to generate in the white noise pattern. |
amplitude | double-precision | The maximum amplitude over which the white noise pattern is distributed. For example, if amplitude is 5, the output array contains a random uniformly distributed pattern over the range between -5.0 and 5.0. Default Value: 1.0. |
seed | integer | Seed value. When seed >= 0, WhiteNoise generates a new random sequence using the seed value. When seed < 0, the previously generated random sequence continues. |
Output | ||
Name | Type | Description |
noise | double-precision array | Generated white noise pattern. |
Name | Type | Description |
status | AnalysisLibErrType | A value that specifies the type of error that occurred. Refer to analysis.h for definitions of these constants. |