latest version v1.9 - last update 10 Apr 2010 |
the parameters for the class forwardSubstitution More...
#include <ltiForwardSubstitution.h>
Public Member Functions | |
parameters () | |
parameters (const parameters &other) | |
~parameters () | |
const char * | getTypeName () const |
parameters & | copy (const parameters &other) |
parameters & | operator= (const parameters &other) |
virtual functor::parameters * | clone () const |
virtual bool | write (ioHandler &handler, const bool complete=true) const |
virtual bool | read (ioHandler &handler, const bool complete=true) |
Public Attributes | |
matrix< T > | theMatrix |
the parameters for the class forwardSubstitution
lti::forwardSubstitution< T >::parameters::parameters | ( | void | ) | [inline] |
default constructor.
The triangularType is Lower by default.
Reimplemented from lti::linearAlgebraFunctor::parameters.
References lti::triangularMatrixType::Lower, and lti::triangularMatrixType::triangularType.
Referenced by lti::forwardSubstitution< T >::parameters::clone().
lti::forwardSubstitution< T >::parameters::parameters | ( | const parameters & | other | ) | [inline] |
copy constructor
other | the parameters object to be copied |
Reimplemented from lti::linearAlgebraFunctor::parameters.
References lti::forwardSubstitution< T >::parameters::copy().
lti::forwardSubstitution< T >::parameters::~parameters | ( | ) | [inline, virtual] |
destructor
Reimplemented from lti::linearAlgebraFunctor::parameters.
virtual functor::parameters* lti::forwardSubstitution< T >::parameters::clone | ( | ) | const [inline, virtual] |
returns a pointer to a clone of the parameters
Reimplemented from lti::linearAlgebraFunctor::parameters.
References lti::forwardSubstitution< T >::parameters::parameters().
parameters& lti::forwardSubstitution< T >::parameters::copy | ( | const parameters & | other | ) | [inline] |
copy the contents of a parameters object
other | the parameters object to be copied |
Reimplemented from lti::linearAlgebraFunctor::parameters.
References lti::functor::parameters::copy(), and lti::forwardSubstitution< T >::parameters::theMatrix.
Referenced by lti::forwardSubstitution< T >::parameters::operator=(), and lti::forwardSubstitution< T >::parameters::parameters().
const char* lti::forwardSubstitution< T >::parameters::getTypeName | ( | void | ) | const [inline, virtual] |
returns name of this type
Reimplemented from lti::linearAlgebraFunctor::parameters.
parameters& lti::forwardSubstitution< T >::parameters::operator= | ( | const parameters & | other | ) | [inline] |
copy the contents of a parameters object
other | the parameters object to be copied |
References lti::forwardSubstitution< T >::parameters::copy().
virtual bool lti::forwardSubstitution< T >::parameters::read | ( | ioHandler & | handler, | |
const bool | complete = true | |||
) | [inline, virtual] |
read the parameters from the given ioHandler
handler | the ioHandler to be used | |
complete | if true (the default) the enclosing begin/end will be also written, otherwise only the data block will be written. |
Reimplemented from lti::linearAlgebraFunctor::parameters.
References lti::ioHandler::readBegin(), lti::ioHandler::readEnd(), and lti::forwardSubstitution< T >::parameters::theMatrix.
virtual bool lti::forwardSubstitution< T >::parameters::write | ( | ioHandler & | handler, | |
const bool | complete = true | |||
) | const [inline, virtual] |
write the parameters in the given ioHandler
handler | the ioHandler to be used | |
complete | if true (the default) the enclosing begin/end will be also written, otherwise only the data block will be written. |
Reimplemented from lti::linearAlgebraFunctor::parameters.
References lti::forwardSubstitution< T >::parameters::theMatrix, lti::ioHandler::writeBegin(), and lti::ioHandler::writeEnd().
matrix<T> lti::forwardSubstitution< T >::parameters::theMatrix |