|
lsst.afw g3a5ebb7d8a+28b83bf6a5
|
Public Types | |
| enum | StateFlags { LOWER_FISHER_MATRIX = 0x001 , FULL_FISHER_MATRIX = 0x002 , RHS_VECTOR = 0x004 , SOLUTION_ARRAY = 0x008 , COVARIANCE_ARRAY = 0x010 , DIAGNOSTIC_ARRAY = 0x020 , DESIGN_AND_DATA = 0x040 } |
Public Member Functions | |
| template<typename D> | |
| void | setRank (Eigen::MatrixBase< D > const &values) |
| void | ensure (int desired) |
| virtual void | factor ()=0 |
| virtual void | updateRank ()=0 |
| virtual void | updateSolution ()=0 |
| virtual void | updateCovariance ()=0 |
| virtual void | updateDiagnostic ()=0 |
| Impl (int dimension_, Factorization factorization_, double threshold_=std::numeric_limits< double >::epsilon()) | |
| virtual | ~Impl ()=default |
Public Attributes | |
| int | state |
| int | dimension |
| int | rank |
| Factorization | factorization |
| Factorization | whichDiagnostic |
| double | threshold |
| Eigen::MatrixXd | design |
| Eigen::VectorXd | data |
| Eigen::MatrixXd | fisher |
| Eigen::VectorXd | rhs |
| ndarray::Array< double, 1, 1 > | solution |
| ndarray::Array< double, 2, 2 > | covariance |
| ndarray::Array< double, 1, 1 > | diagnostic |
Definition at line 43 of file LeastSquares.cc.
| Enumerator | |
|---|---|
| LOWER_FISHER_MATRIX | |
| FULL_FISHER_MATRIX | |
| RHS_VECTOR | |
| SOLUTION_ARRAY | |
| COVARIANCE_ARRAY | |
| DIAGNOSTIC_ARRAY | |
| DESIGN_AND_DATA | |
Definition at line 45 of file LeastSquares.cc.
|
inlineexplicit |
Definition at line 122 of file LeastSquares.cc.
|
virtualdefault |
|
inline |
Definition at line 82 of file LeastSquares.cc.
|
pure virtual |
|
inline |
Definition at line 72 of file LeastSquares.cc.
|
pure virtual |
|
pure virtual |
|
pure virtual |
|
pure virtual |
| ndarray::Array<double, 2, 2> lsst::afw::math::LeastSquares::Impl::covariance |
Definition at line 68 of file LeastSquares.cc.
| Eigen::VectorXd lsst::afw::math::LeastSquares::Impl::data |
Definition at line 63 of file LeastSquares.cc.
| Eigen::MatrixXd lsst::afw::math::LeastSquares::Impl::design |
Definition at line 62 of file LeastSquares.cc.
| ndarray::Array<double, 1, 1> lsst::afw::math::LeastSquares::Impl::diagnostic |
Definition at line 69 of file LeastSquares.cc.
| int lsst::afw::math::LeastSquares::Impl::dimension |
Definition at line 56 of file LeastSquares.cc.
| Factorization lsst::afw::math::LeastSquares::Impl::factorization |
Definition at line 58 of file LeastSquares.cc.
| Eigen::MatrixXd lsst::afw::math::LeastSquares::Impl::fisher |
Definition at line 64 of file LeastSquares.cc.
| int lsst::afw::math::LeastSquares::Impl::rank |
Definition at line 57 of file LeastSquares.cc.
| Eigen::VectorXd lsst::afw::math::LeastSquares::Impl::rhs |
Definition at line 65 of file LeastSquares.cc.
| ndarray::Array<double, 1, 1> lsst::afw::math::LeastSquares::Impl::solution |
Definition at line 67 of file LeastSquares.cc.
| int lsst::afw::math::LeastSquares::Impl::state |
Definition at line 55 of file LeastSquares.cc.
| double lsst::afw::math::LeastSquares::Impl::threshold |
Definition at line 60 of file LeastSquares.cc.
| Factorization lsst::afw::math::LeastSquares::Impl::whichDiagnostic |
Definition at line 59 of file LeastSquares.cc.