Public Member Functions | Protected Attributes

Generates pseudo-random uniformly distributed noise for simulating the Process. More...

#include <uniform_noise.hpp>

Inheritance diagram for UniformNoise:
Inheritance graph
[legend]

List of all members.

Public Member Functions

virtual UniformNoiseclone () const
virtual UniformNoiseclone (uint idx) const
const DVectorgetLowerLimit () const
const DVectorgetUpperLimit () const
virtual returnValue init (uint seed=0)
UniformNoiseoperator= (const UniformNoise &rhs)
returnValue setLimit (uint idx, double _lowerLimit, double _upperLimit)
returnValue setLimits (const DVector &_lowerLimit, const DVector &_upperLimit)
returnValue setLimits (double _lowerLimit, double _upperLimit)
virtual returnValue step (DVector &_w)
virtual returnValue step (VariablesGrid &_w)
 UniformNoise ()
 UniformNoise (const DVector &_lowerLimit, const DVector &_upperLimit)
 UniformNoise (uint _dim, double _lowerLimit, double _upperLimit)
 UniformNoise (const UniformNoise &rhs)
virtual ~UniformNoise ()

Protected Attributes

DVector lowerLimit
DVector upperLimit

Detailed Description

Generates pseudo-random uniformly distributed noise for simulating the Process.

The class UniformNoise generates pseudo-random uniformly distributed noise for simulating the Process within the SimulationEnvironment.

Author:
Hans Joachim Ferreau, Boris Houska

Definition at line 53 of file uniform_noise.hpp.


Constructor & Destructor Documentation

Default constructor.

Definition at line 45 of file uniform_noise.cpp.

UniformNoise::UniformNoise ( const DVector _lowerLimit,
const DVector _upperLimit 
)

Constructor which takes lower and upper limits of the random variable. The dimension of these limit vector determine the dimension of the random variable.

Parameters:
[in]_lowerLimitLower limit for each component.
[in]_upperLimitUpper limit for each component.

Definition at line 50 of file uniform_noise.cpp.

UniformNoise::UniformNoise ( uint  _dim,
double  _lowerLimit,
double  _upperLimit 
)

Constructor which takes the dimension of the random variable as well as as common values for the lower and upper limits of all components.

Parameters:
[in]_dimDimension of random variable.
[in]_lowerLimitCommon lower limit for all components.
[in]_upperLimitCommon upper limit for all components.

Definition at line 65 of file uniform_noise.cpp.

Copy constructor (deep copy).

Parameters:
[in]rhsRight-hand side object.

Definition at line 82 of file uniform_noise.cpp.

Destructor.

Definition at line 89 of file uniform_noise.cpp.


Member Function Documentation

UniformNoise * UniformNoise::clone ( ) const [virtual]

Clone constructor (deep copy).

Returns:
Pointer to deep copy of base class type

Implements Noise.

Definition at line 108 of file uniform_noise.cpp.

UniformNoise * UniformNoise::clone ( uint  idx) const [virtual]

Clone constructor for a given noise component (deep copy).

Parameters:
[in]idxRight-hand side object.
Returns:
Pointer to deep copy of base class type

Implements Noise.

Definition at line 114 of file uniform_noise.cpp.

const DVector& UniformNoise::getLowerLimit ( ) const [inline]

Returns lower limits of the random variable.

Returns:
Lower limits of the random variable
const DVector& UniformNoise::getUpperLimit ( ) const [inline]

Returns upper limits of the random variable.

Returns:
Upper limits of the random variable
returnValue UniformNoise::init ( uint  seed = 0) [virtual]

Initializes noise generation and performs a couple of consistency checks. Initialization of the pseudo-random number generator can be based on a seed in order to allow exact reproduction of generated noise. If seed is not specified (i.e. 0), a seed is obtain from the system clock.

Parameters:
[in]seedSeed for pseudo-random number generator.
Returns:
SUCCESSFUL_RETURN,
RET_INVALID_NOISE_SETTINGS,
RET_NO_NOISE_SETTINGS

Implements Noise.

Definition at line 188 of file uniform_noise.cpp.

UniformNoise & UniformNoise::operator= ( const UniformNoise rhs)

Assignment Operator (deep copy)

Parameters:
[in]rhsRight-hand side object.

Definition at line 94 of file uniform_noise.cpp.

returnValue UniformNoise::setLimit ( uint  idx,
double  _lowerLimit,
double  _upperLimit 
)

Assigns new lower and upper limit on the component of the random variable with given index.

Parameters:
[in]idxIndex of component.
[in]_lowerLimitNew lower limit.
[in]_upperLimitNew upper limit.
Returns:
SUCCESSFUL_RETURN,
RET_INDEX_OUT_OF_BOUNDS,
RET_INVALID_ARGUMENTS

Definition at line 169 of file uniform_noise.cpp.

returnValue UniformNoise::setLimits ( const DVector _lowerLimit,
const DVector _upperLimit 
)

Assigns new lower and upper limits on the random variable.

Parameters:
[in]_lowerLimitNew lower limits for each component.
[in]_upperLimitNew upper limits for each component.
Returns:
SUCCESSFUL_RETURN,
RET_VECTOR_DIMENSION_MISMATCH,
RET_INVALID_ARGUMENTS

Definition at line 131 of file uniform_noise.cpp.

returnValue UniformNoise::setLimits ( double  _lowerLimit,
double  _upperLimit 
)

Assigns new lower and upper limits on the random variable.

Parameters:
[in]_lowerLimitNew common lower limit for all components.
[in]_upperLimitNew common upper limit for all components.
Returns:
SUCCESSFUL_RETURN,
RET_INVALID_ARGUMENTS

Definition at line 152 of file uniform_noise.cpp.

returnValue UniformNoise::step ( DVector _w) [virtual]

Generates a single noise vector based on current internal settings.

Parameters:
[out]_wGenerated noise vector.
Returns:
SUCCESSFUL_RETURN,
RET_BLOCK_NOT_READY,
RET_VECTOR_DIMENSION_MISMATCH

Implements Noise.

Definition at line 209 of file uniform_noise.cpp.

Generates a noise vector sequence based on current internal settings. Noise is generated for each grid point of the VariablesGrid passed.

Parameters:
[in,out]_wGenerated noise vector sequence.
Returns:
SUCCESSFUL_RETURN,
RET_BLOCK_NOT_READY,
RET_VECTOR_DIMENSION_MISMATCH

Implements Noise.

Definition at line 230 of file uniform_noise.cpp.


Member Data Documentation

Lower limit for each component.

Definition at line 229 of file uniform_noise.hpp.

Upper limit for each component.

Definition at line 230 of file uniform_noise.hpp.


The documentation for this class was generated from the following files:


acado
Author(s): Milan Vukov, Rien Quirynen
autogenerated on Thu Aug 27 2015 12:01:40