Copy constructor (deep copy)
Copy assignment (deep copy)
Destructor
Prerequisite
Etymology
Gaussian Noise generator.
Synopsis
A GNoise is described by a mean and a variance (Note these are
not parameters in the Function sense, but more like the
order of a polynomial. The defaults are 0 and 1.
Example
GNoiseFunction<Double> sf;
sf(); // = 0.12
Template Type Argument Requirements (T)
Thrown Exceptions
Member Description
GNoiseParam()
Constructs the GNoise, Defaults:
mean=0, var=1.0
GNoiseParam(const Double &mean, const Double &var)
GNoiseParam(const GNoiseParam<T> &other)
GNoiseParam<T> &operator=(const GNoiseParam<T> &other)
virtual ~GNoiseParam()
virtual uInt ndim() const
virtual const String &name() const
Give name of function