#include <Scaling.h>
Public Types | |
typedef MatrixType::Index | Index |
typedef _MatrixType | MatrixType |
typedef MatrixType::Scalar | Scalar |
Public Member Functions | |
void | compute (const MatrixType &mat) |
void | computeRef (MatrixType &mat) |
VectorXd & | LeftScaling () |
VectorXd & | RightScaling () |
Scaling () | |
Scaling (const MatrixType &matrix) | |
void | setTolerance (double tol) |
~Scaling () | |
Protected Member Functions | |
void | init () |
Protected Attributes | |
ComputationInfo | m_info |
bool | m_isInitialized |
VectorXd | m_left |
MatrixType | m_matrix |
int | m_maxits |
VectorXd | m_right |
double | m_tol |
Definition at line 47 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
Definition at line 52 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
typedef _MatrixType Scaling< _MatrixType >::MatrixType |
Definition at line 50 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
Definition at line 51 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
Definition at line 55 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
Scaling< _MatrixType >::Scaling | ( | const MatrixType & | matrix | ) | [inline] |
Definition at line 57 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
Definition at line 63 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
void Scaling< _MatrixType >::compute | ( | const MatrixType & | mat | ) | [inline] |
Compute the left and right diagonal matrices to scale the input matrix mat
FIXME This algorithm will be modified such that the diagonal elements are permuted on the diagonal.
Definition at line 72 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
void Scaling< _MatrixType >::computeRef | ( | MatrixType & | mat | ) | [inline] |
Compute the left and right vectors to scale the vectors the input matrix is scaled with the computed vectors at output
Definition at line 141 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
Definition at line 169 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
VectorXd& Scaling< _MatrixType >::LeftScaling | ( | ) | [inline] |
Get the vector to scale the rows of the matrix
Definition at line 148 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
VectorXd& Scaling< _MatrixType >::RightScaling | ( | ) | [inline] |
Get the vector to scale the columns of the matrix
Definition at line 155 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
void Scaling< _MatrixType >::setTolerance | ( | double | tol | ) | [inline] |
Set the tolerance for the convergence of the iterative scaling algorithm
Definition at line 162 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
ComputationInfo Scaling< _MatrixType >::m_info [mutable, protected] |
Definition at line 177 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
bool Scaling< _MatrixType >::m_isInitialized [protected] |
Definition at line 178 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
Definition at line 179 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
MatrixType Scaling< _MatrixType >::m_matrix [protected] |
Definition at line 176 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
Definition at line 182 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
Definition at line 180 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.
Definition at line 181 of file unsupported/Eigen/src/IterativeSolvers/Scaling.h.