|
LSST Applications g00274db5b6+edbf708997,g00d0e8bbd7+edbf708997,g199a45376c+5137f08352,g1fd858c14a+1d4b6db739,g262e1987ae+f4d9505c4f,g29ae962dfc+7156fb1a53,g2cef7863aa+73c82f25e4,g35bb328faa+edbf708997,g3e17d7035e+5b3adc59f5,g3fd5ace14f+852fa6fbcb,g47891489e3+6dc8069a4c,g53246c7159+edbf708997,g64539dfbff+9f17e571f4,g67b6fd64d1+6dc8069a4c,g74acd417e5+ae494d68d9,g786e29fd12+af89c03590,g7ae74a0b1c+a25e60b391,g7aefaa3e3d+536efcc10a,g7cc15d900a+d121454f8d,g87389fa792+a4172ec7da,g89139ef638+6dc8069a4c,g8d7436a09f+28c28d8d6d,g8ea07a8fe4+db21c37724,g92c671f44c+9f17e571f4,g98df359435+b2e6376b13,g99af87f6a8+b0f4ad7b8d,gac66b60396+966efe6077,gb88ae4c679+7dec8f19df,gbaa8f7a6c5+38b34f4976,gbf99507273+edbf708997,gc24b5d6ed1+9f17e571f4,gca7fc764a6+6dc8069a4c,gcc769fe2a4+97d0256649,gd7ef33dd92+6dc8069a4c,gdab6d2f7ff+ae494d68d9,gdbb4c4dda9+9f17e571f4,ge410e46f29+6dc8069a4c,geaed405ab2+e194be0d2b,w.2025.47
LSST Data Management Base Package
|
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 |
|
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.