Gaussian

Generates a signal containing a Gaussian white noise wave.

1378

Inputs/Outputs

datatype_icon

offset

DC offset of the signal.

Default value: 0

datatype_icon

reset

A Boolean that controls the reseeding of the noise sample generator after the first call of the node.

True Accepts a new state or new seed value and begins producing noise samples based on the new state or new seed value.
False Maintains the initial internal seed state and resumes producing noise samples as a continuation of the previous noise sequence.

Default value: False

datatype_icon

standard deviation

Standard deviation of the noise you generate.

Default value: 1

datatype_icon

state in

Initial internal state of the noise generator.

This input must be passed from the state out output of another call to this node.

This node uses state in as the initial internal seed state of the noise generator if reset is True or if this is the first call of the node. If state in contains invalid values, this nodes uses seed as the initial internal seed state of the noise generator.

datatype_icon

random generator state

Initial internal seed state of the random noise generator.

datatype_icon

x seed

Internal x seed.

x seed must be greater than 0.
datatype_icon

y seed

Internal y seed.

y seed must be greater than 0.
datatype_icon

z seed

Internal z seed.

z seed must be greater than 0.
datatype_icon

Gauss state

Internal Gauss state.

datatype_icon

normal preset

Normal preset state for internal use.

datatype_icon

normal preset value

Normal preset value for internal use.

datatype_icon

seed

Number that this node uses to initialize the noise generator.

This node initializes the noise generator using seed when this node meets both of the following conditions:

  • This is the first call of this node or reset is True.
  • state in is unwired or contains invalid values.
seed is greater than 0 Generates noise samples based on the seed value.
seed is less than or equal to 0 For the first call, this node generates a random seed value and produces noise samples based on that seed value. For subsequent calls to the node, if seed remains less than or equal to 0, the node maintains the initial internal seed state and produces noise samples as a continuation of the initial noise sequence.

Default value: -1

datatype_icon

error in

Error conditions that occur before this node runs.

The node responds to this input according to standard error behavior.

Standard Error Behavior

Default value: No error

datatype_icon

sample rate

Sample rate in samples per second.

This input is available only if you configure this node to return a waveform.

Default value: 1000

datatype_icon

samples

Number of samples in the signal.

samples must be greater than 0. Otherwise, this node returns an error.

This input is available when you configure this node to return a waveform or an array of double-precision, floating-point numbers.

Default value: 1000

datatype_icon

t0

Timestamp of the output signal.

If this input is unwired, this node uses the current time as the timestamp of the output signal.

This input is available only if you configure this node to return a waveform.

datatype_icon

Gaussian white noise

Gaussian-distributed, pseudorandom pattern.

This output can return the following data types:

  • Waveform
  • Double-precision, floating-point number
  • 1D array of double-precision, floating-point numbers
datatype_icon

state out

Final internal seed state of the noise generator.

datatype_icon

random generator state

Final internal seed state of the random noise generator.

datatype_icon

x seed

Internal x seed.

datatype_icon

y seed

Internal y seed.

datatype_icon

z seed

Internal z seed.

datatype_icon

Gauss state

Internal Gauss state.

datatype_icon

normal preset

Normal preset state for internal use.

datatype_icon

normal preset value

Normal preset value for internal use.

datatype_icon

error out

Error information.

The node produces this output according to standard error behavior.

Standard Error Behavior

Algorithm for Generating the Gaussian White Noise

This node generates the Gaussian-distributed pseudorandom sequence using a modified version of the Box-Muller method to transform uniformly distributed random numbers into Gaussian-distributed random numbers. This node generates the uniform pseudorandom numbers using the Wichmann-Hill generator. Given that the probability density function, f(x), of the Gaussian-distributed Gaussian noise pattern is

f ( x ) = 1 s 2 π e ( ( 1 2 ) ( x s ) 2 ) f ( x ) = 1 s 2 π e ( ( 1 2 ) ( x s ) 2 )

where s is the absolute value of standard deviation. You can compute the expected values,

E{}
, using the following formula:

E ( x ) = x ( f ( x ) ) d x E ( x ) = x ( f ( x ) ) d x

The following equations define the expected mean value

μ
and the expected standard deviation value
σ
of the pseudorandom sequence:

μ = E { x } = 0 μ = E { x } = 0
σ = [ E { ( x μ ) 2 } ] 1 / 2 = s σ = [ E { ( x μ ) 2 } ] 1 / 2 = s

The pseudorandom sequence produces approximately 6.95 * 1012 samples before the pattern repeats itself. The probability density function (PDF) of the pseudorandom sequence approximates a Gaussian PDF with peak values of at least 6

σ
.

Application of the Gaussian White Noise

Gaussian white noise provides a realistic simulation of some real-world situations. Because of its independent statistical characteristics, Gaussian white noise also often acts as the source of other random number generators. The additive white Gaussian noise (AWGN) channel model is widely used in communications.