GenerateUniform - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

SignalProcessing

  

GenerateUniform

  

generate samples of a uniformly distributed pseudo-random signal

 

Calling Sequence

Parameters

Options

Description

Thread Safety

Examples

Compatibility

Calling Sequence

GenerateUniform(n, low, high)

Parameters

n

-

posint, number of samples

low

-

realcons, lower bound of the uniform distribution range

hi

-

realcons, upper bound of the uniform distribution range

Options

• 

container : Array, predefined Array for holding results

• 

seed : nonnegint, seed for the pseudo-random number generator

Description

• 

The GenerateUniform(n, low, high) command generates n floating-point samples of a uniformly distributed pseudo-random signal with values between the values of low and high. The results are returned in an Array with datatype float[8].

• 

If the container=C option is provided, then the results are put into C and C is returned. With this option, no additional memory is allocated to store the result. The container must be an Array of size n having datatype float[8].

• 

If the seed option is provided, the given value is used as the seed for the pseudo-random number generator. Otherwise, a random nonnegative integer is used as the seed.

Thread Safety

• 

The SignalProcessing[GenerateUniform] command is thread-safe as of Maple 17.

• 

For more information on thread safety, see index/threadsafe.

Examples

(1)

(2)

(3)

Compatibility

• 

The SignalProcessing[GenerateUniform] command was introduced in Maple 17.

• 

For more information on Maple 17 changes, see Updates in Maple 17.

See Also

GenerateGaussian

 


Download Help Document