|
| | CholeskySparse (const MatrixSparse *mat=nullptr) |
| |
| | CholeskySparse (const CholeskySparse &m) |
| |
| CholeskySparse & | operator= (const CholeskySparse &m) |
| |
| virtual | ~CholeskySparse () |
| |
| int | setMatrix (const MatrixSparse *mat) |
| |
| int | stdev (VectorDouble &vcur, bool flagStDev=false) const |
| |
| double | computeLogDeterminant () const override |
| |
| 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 |
| |
| | 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 |
| |