|
| | CholeskyDense (const MatrixSymmetric *mat=nullptr) |
| |
| | CholeskyDense (const CholeskyDense &m) |
| |
| CholeskyDense & | operator= (const CholeskyDense &m) |
| |
| virtual | ~CholeskyDense () |
| |
| int | setMatrix (const MatrixSymmetric *mat) |
| |
| double | computeLogDeterminant () const override |
| |
| VectorDouble | getLowerTriangle () const |
| |
| double | getLowerTriangle (int i, int j) const |
| |
| VectorDouble | getUpperTriangleInverse () const |
| |
| double | getUpperTriangleInverse (int i, int j) const |
| |
| void | solveMatInPlace (const MatrixDense &mat, MatrixDense &res) const |
| |
| int | addSolveX (const constvect vecin, vect vecout) const override |
| |
| int | addInvLtX (const constvect vecin, vect vecout) const override |
| |
| int | addLtX (const constvect vecin, vect vecout) const override |
| |
| int | addLX (const constvect vecin, vect vecout) const override |
| |
| int | addInvLX (const constvect vecin, vect vecout) const override |
| |
| void | matProductInPlace (int mode, const MatrixDense &a, MatrixDense &x) |
| |
| void | normMatInPlace (int mode, int neq, const MatrixSymmetric &a, MatrixSymmetric &b) |
| |
| void | clear () |
| |
| bool | empty () const |
| |
| | ACholesky (const AMatrix *mat) |
| |
| | ACholesky (const ACholesky &m) |
| |
| ACholesky & | operator= (const ACholesky &m) |
| |
| virtual | ~ACholesky () |
| |
| int | getSize () const override |
| |
| const AMatrix * | getMatrix () const |
| |
| int | solve (const constvect vecin, vect vecout) const |
| |
| int | InvLtX (const constvect whitenoise, vect vecout) const |
| |
| int | LtX (const constvect whitenoise, vect vecout) const |
| |
| int | LX (const constvect whitenoise, vect vecout) const |
| |
| int | InvLX (const constvect whitenoise, vect vecout) const |
| |
| int | solveMatrix (const MatrixDense &b, MatrixDense &x) const |
| |
| bool | isReady () const |
| |
| VectorDouble | invLtX (const VectorDouble &vecin) const |
| |
| VectorDouble | LtX (const VectorDouble &vecin) const |
| |
| VectorDouble | LX (const VectorDouble &vecin) const |
| |
| VectorDouble | invLX (const VectorDouble &vecin) const |
| |
| VectorDouble | solveX (const VectorDouble &vecin) const |
| |
| | ASimulable () |
| |
| virtual | ~ASimulable () |
| |
| int | evalSimulate (const VectorDouble &whitenoise, VectorDouble &outv) const |
| |
| VectorDouble | evalSimulate (const VectorDouble &whitenoise) const |
| |
| VectorDouble | simulate () const |
| |
| int | evalSimulate (const constvect whitenoise, vect result) const |
| |
| int | addSimulateToDest (const constvect whitenoise, vect outv) const |
| |
| | ALinearOp () |
| |
| | ALinearOp (const ALinearOp &op)=delete |
| |
| virtual | ~ALinearOp () |
| |
| int | evalDirect (const VectorDouble &inv, VectorDouble &outv) const |
| |
| VectorDouble | evalDirect (const VectorDouble &in) const |
| |
| virtual void | multiplyByValueAndAddDiagonal (double v1=1., double v2=0.) |
| |
| virtual void | resetModif () |
| |
| void | setUseFactor (bool usefactor) |
| |
| int | evalDirect (constvect inv, vect outv) const |
| |
| int | addToDest (const constvect inv, vect outv) const |
| |
| int | addToDest (const Eigen::VectorXd &inv, Eigen::VectorXd &outv) const |
| |