Generate white Gaussian noise samples
specifies the output type as noise
= wgn(___,outputtype
)'real'
or
'complex'
in addition to the input arguments in any of
the previous syntaxes.
To generate repeatable white Gaussian noise samples, use one of these tips:
Provide a static seed
value as an input to
wgn
.
Use the reset (RandStream)
function on the randobject
before passing it as
an input to wgn
.
Provide randobject
in a known state as an
input to wgn
. For more information, see
RandStream
.