last update 20 Sep 2009 |
#include <cvrQrDecomposition.h>
Public Member Functions | |
parameters () | |
parameters (const parameters &other) | |
~parameters () | |
parameters & | copy (const parameters &other) |
parameters & | operator= (const parameters &other) |
const std::string & | name () const |
virtual parameters * | clone () const |
virtual parameters * | newInstance () const |
virtual bool | write (ioHandler &handler, const bool complete=true) const |
virtual bool | read (ioHandler &handler, const bool complete=true) |
Public Attributes | |
int | performanceTweakThresholdForTranspose |
cvr::qrDecomposition< T >::qrDecomposition::parameters::parameters | ( | ) |
Default constructor.
Reimplemented from cvr::linearAlgebraFunctor::linearAlgebraFunctor::parameters.
cvr::qrDecomposition< T >::qrDecomposition::parameters::parameters | ( | const parameters & | other | ) |
Copy constructor.
other | the parameters object to be copied |
Reimplemented from cvr::linearAlgebraFunctor::linearAlgebraFunctor::parameters.
cvr::qrDecomposition< T >::qrDecomposition::parameters::~parameters | ( | ) | [virtual] |
virtual parameters* cvr::qrDecomposition< T >::qrDecomposition::parameters::clone | ( | ) | const [virtual] |
Returns a pointer to a clone of the parameters.
Reimplemented from cvr::linearAlgebraFunctor::linearAlgebraFunctor::parameters.
parameters& cvr::qrDecomposition< T >::qrDecomposition::parameters::copy | ( | const parameters & | other | ) |
Copy the contents of a parameters object.
other | the parameters object to be copied |
Reimplemented from cvr::linearAlgebraFunctor::linearAlgebraFunctor::parameters.
const std::string& cvr::qrDecomposition< T >::qrDecomposition::parameters::name | ( | ) | const [virtual] |
Returns the name of this class.
Reimplemented from cvr::linearAlgebraFunctor::linearAlgebraFunctor::parameters.
virtual parameters* cvr::qrDecomposition< T >::qrDecomposition::parameters::newInstance | ( | ) | const [virtual] |
Returns a pointer to a clone of the parameters.
Reimplemented from cvr::linearAlgebraFunctor::linearAlgebraFunctor::parameters.
parameters& cvr::qrDecomposition< T >::qrDecomposition::parameters::operator= | ( | const parameters & | other | ) |
Copy the contents of a parameters object.
other | the parameters object to be copied |
Reimplemented from cvr::linearAlgebraFunctor::linearAlgebraFunctor::parameters.
virtual bool cvr::qrDecomposition< T >::qrDecomposition::parameters::read | ( | ioHandler & | handler, | |
const bool | complete = true | |||
) | [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 cvr::linearAlgebraFunctor::linearAlgebraFunctor::parameters.
virtual bool cvr::qrDecomposition< T >::qrDecomposition::parameters::write | ( | ioHandler & | handler, | |
const bool | complete = true | |||
) | const [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 cvr::linearAlgebraFunctor::linearAlgebraFunctor::parameters.
int cvr::qrDecomposition< T >::qrDecomposition::parameters::performanceTweakThresholdForTranspose |
Specifies above which matrix size, the matrix is internally transposed.
This parameter takes only effect if useLapack is false or LAPACK is not available.
Due to memory access issues, the algorithm works a lot faster especially for large matrices.
Both, columns and rows are checked against this value. So a value of 50 means that the matrix must have at least 51 rows and at least 51 columns to be transposed.
Default: _CVR_PERFORMANCE_QR_DECOMPOSITION in cvrPerformanceConfig.h