LSST Applications g0fba68d861+179b51e827,g1ec0fe41b4+f536777771,g1fd858c14a+958e7c0317,g216c3ac8a7+b9c470ee50,g30d60c3aa8+0fb04ed403,g35bb328faa+fcb1d3bbc8,g4d2262a081+8fbe88b5f1,g53246c7159+fcb1d3bbc8,g56a49b3a55+a44ca4bdea,g5a012ec0e7+3632fc3ff3,g5b833f1e9f+693b976368,g60b5630c4e+693b976368,g67b6fd64d1+ed4b5058f4,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g8180f54f50+5e086a68f8,g8352419a5c+fcb1d3bbc8,g8852436030+bef424d5ca,g89139ef638+ed4b5058f4,g9125e01d80+fcb1d3bbc8,g94187f82dc+693b976368,g989de1cb63+ed4b5058f4,g9ccd5d7f00+b7cae620c0,g9d31334357+693b976368,g9f33ca652e+f3b9f38d88,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+bcd5b2011a,gb58c049af0+f03b321e39,gb89ab40317+ed4b5058f4,gc0af124501+57663cf5fa,gcf25f946ba+bef424d5ca,gd6cbbdb0b4+bb83cc51f8,gde0f65d7ad+f646b4d64f,ge278dab8ac+d65b3c2b70,ge410e46f29+ed4b5058f4,gf5e32f922b+fcb1d3bbc8,gf67bdafdda+ed4b5058f4,w.2025.16
LSST Data Management Base Package
|
#include <KernelSolution.h>
Public Types | |
enum | KernelSolvedBy { NONE = 0 , CHOLESKY_LDLT = 1 , CHOLESKY_LLT = 2 , LU = 3 , EIGENVECTOR = 4 } |
enum | ConditionNumberType { EIGENVALUE = 0 , SVD = 1 } |
typedef std::shared_ptr< KernelSolution > | Ptr |
typedef lsst::afw::math::Kernel::Pixel | PixelT |
typedef lsst::afw::image::Image< lsst::afw::math::Kernel::Pixel > | ImageT |
Public Member Functions | |
KernelSolution (Eigen::MatrixXd mMat, Eigen::VectorXd bVec, bool fitForBackground) | |
KernelSolution (bool fitForBackground) | |
KernelSolution () | |
virtual | ~KernelSolution () |
virtual void | solve () |
virtual void | solve (Eigen::MatrixXd const &mMat, Eigen::VectorXd const &bVec) |
KernelSolvedBy | getSolvedBy () |
virtual double | getConditionNumber (ConditionNumberType conditionType) |
virtual double | getConditionNumber (Eigen::MatrixXd const &mMat, ConditionNumberType conditionType) |
Eigen::MatrixXd const & | getM () |
Eigen::VectorXd const & | getB () |
void | printM () |
void | printB () |
void | printA () |
int | getId () const |
Protected Attributes | |
int | _id |
Unique ID for object. | |
Eigen::MatrixXd | _mMat |
Derived least squares M matrix. | |
Eigen::VectorXd | _bVec |
Derived least squares B vector. | |
Eigen::VectorXd | _aVec |
Derived least squares solution matrix. | |
KernelSolvedBy | _solvedBy |
Type of algorithm used to make solution. | |
bool | _fitForBackground |
Background terms included in fit. | |
Static Protected Attributes | |
static int | _SolutionId = 0 |
Unique identifier for solution. | |
Definition at line 31 of file KernelSolution.h.
typedef lsst::afw::image::Image<lsst::afw::math::Kernel::Pixel> lsst::ip::diffim::KernelSolution::ImageT |
Definition at line 35 of file KernelSolution.h.
Definition at line 34 of file KernelSolution.h.
Definition at line 33 of file KernelSolution.h.
Enumerator | |
---|---|
EIGENVALUE | |
SVD |
Definition at line 45 of file KernelSolution.h.
Enumerator | |
---|---|
NONE | |
CHOLESKY_LDLT | |
CHOLESKY_LLT | |
LU | |
EIGENVECTOR |
Definition at line 37 of file KernelSolution.h.
|
explicit |
Definition at line 57 of file KernelSolution.cc.
|
explicit |
Definition at line 70 of file KernelSolution.cc.
|
explicit |
Definition at line 81 of file KernelSolution.cc.
|
inlinevirtual |
Definition at line 56 of file KernelSolution.h.
|
inline |
Definition at line 65 of file KernelSolution.h.
|
virtual |
Definition at line 94 of file KernelSolution.cc.
|
virtual |
Definition at line 98 of file KernelSolution.cc.
|
inline |
Definition at line 69 of file KernelSolution.h.
|
inline |
Definition at line 64 of file KernelSolution.h.
|
inline |
Definition at line 60 of file KernelSolution.h.
|
inline |
Definition at line 68 of file KernelSolution.h.
|
inline |
Definition at line 67 of file KernelSolution.h.
|
inline |
Definition at line 66 of file KernelSolution.h.
|
virtual |
Reimplemented in lsst::ip::diffim::RegularizedKernelSolution< InputT >, lsst::ip::diffim::SpatialKernelSolution, lsst::ip::diffim::StaticKernelSolution< InputT >, and lsst::ip::diffim::StaticKernelSolution< PixelT >.
Definition at line 90 of file KernelSolution.cc.
|
virtual |
Definition at line 131 of file KernelSolution.cc.
|
protected |
Derived least squares solution matrix.
Definition at line 75 of file KernelSolution.h.
|
protected |
Derived least squares B vector.
Definition at line 74 of file KernelSolution.h.
|
protected |
Background terms included in fit.
Definition at line 77 of file KernelSolution.h.
|
protected |
Unique ID for object.
Definition at line 72 of file KernelSolution.h.
|
protected |
Derived least squares M matrix.
Definition at line 73 of file KernelSolution.h.
|
staticprotected |
Unique identifier for solution.
Definition at line 78 of file KernelSolution.h.
|
protected |
Type of algorithm used to make solution.
Definition at line 76 of file KernelSolution.h.