latest version v1.9 - last update 10 Apr 2010 |
parameters class for lti::matrixInversion functor More...
#include <ltiMatrixInversion.h>
Public Types | |
enum | algorithmType { LUD = 0, SVD = 1 } |
Public Member Functions | |
parameters (void) | |
parameters (const parameters &other) | |
~parameters () | |
const char * | getTypeName () const |
parameters & | copy (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 | |
algorithmType | method |
parameters class for lti::matrixInversion functor
enum lti::matrixInversion::parameters::algorithmType |
Available algorithms for matrix inversion.
lti::matrixInversion< T >::parameters::parameters | ( | void | ) | [inline] |
Default constructor.
Reimplemented from lti::linearAlgebraFunctor::parameters.
References lti::matrixInversion< T >::parameters::LUD, and lti::matrixInversion< T >::parameters::method.
Referenced by lti::matrixInversion< T >::parameters::clone().
lti::matrixInversion< T >::parameters::parameters | ( | const parameters & | other | ) | [inline] |
copy constructor
other | the parameters object to be copied |
Reimplemented from lti::linearAlgebraFunctor::parameters.
References lti::matrixInversion< T >::parameters::copy().
lti::matrixInversion< T >::parameters::~parameters | ( | ) | [inline, virtual] |
destructor
Reimplemented from lti::linearAlgebraFunctor::parameters.
virtual functor::parameters* lti::matrixInversion< T >::parameters::clone | ( | ) | const [inline, virtual] |
return a cloned instance of this one.
Reimplemented from lti::linearAlgebraFunctor::parameters.
References lti::matrixInversion< T >::parameters::parameters().
parameters& lti::matrixInversion< T >::parameters::copy | ( | const parameters & | other | ) | [inline] |
copy member
other | the parameters object to be copied |
Reimplemented from lti::linearAlgebraFunctor::parameters.
References lti::functor::parameters::copy(), and lti::matrixInversion< T >::parameters::method.
Referenced by lti::matrixInversion< T >::parameters::parameters().
const char* lti::matrixInversion< T >::parameters::getTypeName | ( | void | ) | const [inline, virtual] |
returns name of this type
Reimplemented from lti::linearAlgebraFunctor::parameters.
virtual bool lti::matrixInversion< 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 read, otherwise only the data block will be read. |
Reimplemented from lti::linearAlgebraFunctor::parameters.
References lti::matrixInversion< T >::parameters::LUD, lti::matrixInversion< T >::parameters::method, lti::ioHandler::readBegin(), lti::ioHandler::readEnd(), and lti::matrixInversion< T >::parameters::SVD.
virtual bool lti::matrixInversion< 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::matrixInversion< T >::parameters::LUD, lti::matrixInversion< T >::parameters::method, lti::ioHandler::writeBegin(), and lti::ioHandler::writeEnd().
algorithmType lti::matrixInversion< T >::parameters::method |
Algorithm to be used in the matrix inversion.
Default value: LUD
Referenced by lti::matrixInversion< T >::parameters::copy(), lti::matrixInversion< T >::parameters::parameters(), lti::matrixInversion< T >::parameters::read(), and lti::matrixInversion< T >::parameters::write().