LSSTApplications
10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
|
Solver for linear least-squares problems. More...
#include <LeastSquares.h>
Classes | |
class | Impl |
Public Types | |
enum | Factorization { NORMAL_EIGENSYSTEM, NORMAL_CHOLESKY, DIRECT_SVD } |
Private implementation; forward-declared publicly so we can inherit from it in .cc. More... | |
Public Member Functions | |
template<typename T1 , typename T2 , int C1, int C2> | |
void | setDesignMatrix (ndarray::Array< T1, 2, C1 > const &design, ndarray::Array< T2, 1, C2 > const &data) |
Reset the design matrix and data vector given as ndarrays; dimension must not change. More... | |
template<typename D1 , typename D2 > | |
void | setDesignMatrix (Eigen::MatrixBase< D1 > const &design, Eigen::MatrixBase< D2 > const &data) |
Reset the design matrix and data vector given as Eigen objects; dimension must not change. More... | |
template<typename T1 , int C1> | |
void | setDesignMatrix (ndarray::Array< T1, 2, C1 > const &design) |
Reset the design matrix given as an ndarray; dimension and data are not changed. More... | |
template<typename D1 , typename D2 > | |
void | setDesignMatrix (Eigen::MatrixBase< D1 > const &design) |
Reset the design matrix given as an Eigen object; dimension and data are not changed. More... | |
template<typename T1 , typename T2 , int C1, int C2> | |
void | setNormalEquations (ndarray::Array< T1, 2, C1 > const &fisher, ndarray::Array< T2, 1, C2 > const &rhs) |
Reset the terms in the normal equations given as ndarrays; dimension must not change. More... | |
template<typename D1 , typename D2 > | |
void | setNormalEquations (Eigen::MatrixBase< D1 > const &fisher, Eigen::MatrixBase< D2 > const &rhs) |
Reset the terms in the normal equations given as Eigen objects; dimension must not change. More... | |
void | setThreshold (double threshold) |
Set the threshold used to determine when to truncate Eigenvalues. More... | |
double | getThreshold () const |
Get the threshold used to determine when to truncate Eigenvalues. More... | |
ndarray::Array< double const, 1, 1 > | getSolution () |
Return the vector solution to the least squares problem. More... | |
ndarray::Array< double const, 2, 2 > | getCovariance () |
Return the covariance matrix of the least squares problem. More... | |
ndarray::Array< double const, 2, 2 > | getFisherMatrix () |
Return the Fisher matrix (inverse of the covariance) of the parameters. More... | |
ndarray::Array< double const, 1, 1 > | getDiagnostic (Factorization factorization) |
Return a factorization-dependent vector that can be used to characterize the stability of the solution. More... | |
int | getDimension () const |
Return the number of parameters. More... | |
int | getRank () const |
Return the rank of the problem (number of nonzero Eigenvalues). More... | |
Factorization | getFactorization () const |
Retun the type of factorization used by the solver. More... | |
LeastSquares (Factorization factorization, int dimension) | |
Construct a least-squares object for the given factorization and dimensionality. More... | |
~LeastSquares () | |
Static Public Member Functions | |
template<typename T1 , typename T2 , int C1, int C2> | |
static LeastSquares | fromDesignMatrix (ndarray::Array< T1, 2, C1 > const &design, ndarray::Array< T2, 1, C2 > const &data, Factorization factorization=NORMAL_EIGENSYSTEM) |
Initialize from the design matrix and data vector given as ndarrays. More... | |
template<typename D1 , typename D2 > | |
static LeastSquares | fromDesignMatrix (Eigen::MatrixBase< D1 > const &design, Eigen::MatrixBase< D2 > const &data, Factorization factorization=NORMAL_EIGENSYSTEM) |
Initialize from the design matrix and data vector given as an Eigen objects. More... | |
template<typename T1 , typename T2 , int C1, int C2> | |
static LeastSquares | fromNormalEquations (ndarray::Array< T1, 2, C1 > const &fisher, ndarray::Array< T2, 1, C2 > const &rhs, Factorization factorization=NORMAL_EIGENSYSTEM) |
Initialize from the terms in the normal equations, given as ndarrays. More... | |
template<typename D1 , typename D2 > | |
static LeastSquares | fromNormalEquations (Eigen::MatrixBase< D1 > const &fisher, Eigen::MatrixBase< D2 > const &rhs, Factorization factorization=NORMAL_EIGENSYSTEM) |
Initialize from the terms in the normal equations, given as Eigen objects. More... | |
Private Member Functions | |
Eigen::MatrixXd & | _getDesignMatrix () |
Eigen::VectorXd & | _getDataVector () |
Eigen::MatrixXd & | _getFisherMatrix () |
Eigen::VectorXd & | _getRhsVector () |
void | _factor (bool haveNormalEquations) |
Private Attributes | |
boost::shared_ptr< Impl > | _impl |
Solver for linear least-squares problems.
Linear least-squares problems are defined as finding the vector \(x\) that minimizes \(\left|A x - b\right|_2\), with the number of rows of \(A\) generally greater than the number of columns. We call \(A\) the design matrix, \(b\) the data vector, and \(x\) the solution vector. When the rank of \(A\) is equal to the number of columns, we can obtain using the solution using the normal equations:
\[ A^T A x = A^T b \]
If \(A\) is not full-rank, the problem is underconstrained, and we usually wish to solve the minimum-norm least-squares problem, which also minimizes \(|x|_2\). This can be done by computing a pseudo-inverse of \(A\) using an SVD or complete orthogonal factorization of \(A\), or by performing an Eigen decomposition of \(A^T A\).
This class can be constructed from the design matrix and data vector, or from the two terms in the normal equations (below, we call the matrix \(A^TA\) the Fisher matrix, and the vector \(A^T b\) simply the "right-hand side" (RHS) vector). If initialized with the design matrix and data vector, we can still use the normal equations to solve it. The solution via the normal equations is more susceptible to round-off error, but it is also faster, and if the normal equation terms can be computed directly it can be significantly less expensive in terms of memory. The Fisher matrix is a symmetric matrix, and it should be exactly symmetric when provided as input, because which triangle will be used is an implementation detail that is subject to change and may depend on the storage order.
The solver always operates in double precision, and returns all results in double precision. However, it can be initialized from single precision inputs. It isn't usually a good idea to construct the normal equations in single precision, however, even when the data are single precision.
Definition at line 65 of file LeastSquares.h.
Private implementation; forward-declared publicly so we can inherit from it in .cc.
Definition at line 70 of file LeastSquares.h.
lsst.afw.math::LeastSquares::LeastSquares | ( | Factorization | factorization, |
int | dimension | ||
) |
Construct a least-squares object for the given factorization and dimensionality.
One of the set* member functions must be called before any other operations can be performed on a LeastSquares object initialized this way.
Definition at line 363 of file LeastSquares.cc.
lsst.afw.math::LeastSquares::~LeastSquares | ( | ) |
Definition at line 378 of file LeastSquares.cc.
|
private |
Definition at line 386 of file LeastSquares.cc.
|
private |
Definition at line 381 of file LeastSquares.cc.
|
private |
Definition at line 380 of file LeastSquares.cc.
|
private |
Definition at line 383 of file LeastSquares.cc.
|
private |
Definition at line 384 of file LeastSquares.cc.
|
inlinestatic |
Initialize from the design matrix and data vector given as ndarrays.
Definition at line 99 of file LeastSquares.h.
|
inlinestatic |
Initialize from the design matrix and data vector given as an Eigen objects.
Definition at line 111 of file LeastSquares.h.
|
inlinestatic |
Initialize from the terms in the normal equations, given as ndarrays.
Definition at line 163 of file LeastSquares.h.
|
inlinestatic |
Initialize from the terms in the normal equations, given as Eigen objects.
Definition at line 175 of file LeastSquares.h.
ndarray::Array< double const, 2, 2 > lsst.afw.math::LeastSquares::getCovariance | ( | ) |
Return the covariance matrix of the least squares problem.
The returned array is owned by the LeastSquares object and may be modified in-place by future calls to LeastSquares member functions, so it's best to promptly copy the result elsewhere.
If you want an Eigen object instead, just use getCovariance().asEigen().
The covariance is cached the first time this member function is called, and will be reused unless the matrices are reset or the threshold is changed.
Definition at line 331 of file LeastSquares.cc.
ndarray::Array< double const, 1, 1 > lsst.afw.math::LeastSquares::getDiagnostic | ( | Factorization | factorization | ) |
Return a factorization-dependent vector that can be used to characterize the stability of the solution.
The returned array's size is always equal to getDimension(). When getRank() is less than getDimension(), some elements of the array were considered effectively zero (see setThreshold).
For the NORMAL_EIGENSYSTEM method, this is the vector of Eigenvalues of the Fisher matrix, including those rejected as being below the threshold, sorted in descending order (all values are nonnegative). This is the square of the singular values of the design matrix, and is only available when the factorization is either NORMAL_EIGENSYSTEM or DIRECT_SVD.
For the DIRECT_SVD method, this is the vector of singular values of the design matrix, including those rejected as being below the threshold, sorted in descending order (all values are nonnegative). This is the square root of the Eigenvalues of the Fisher matrix, and is only available when the factorization is either NORMAL_EIGENSYSTEM or DIRECT_SVD.
For the NORMAL_CHOLESKY method, this is \(D\) in the pivoted Cholesky factorization \(P L D L^T P^T\) of the Fisher matrix. This does not provide a reliable way to test the stability of the problem, but it does provide a way to compute the determinant of the Fisher matrix. It is only available when the factorization is NORMAL_CHOLESKY.
Definition at line 348 of file LeastSquares.cc.
int lsst.afw.math::LeastSquares::getDimension | ( | ) | const |
LeastSquares::Factorization lsst.afw.math::LeastSquares::getFactorization | ( | ) | const |
ndarray::Array< double const, 2, 2 > lsst.afw.math::LeastSquares::getFisherMatrix | ( | ) |
Return the Fisher matrix (inverse of the covariance) of the parameters.
Note that the Fisher matrix is exactly the same as the matrix on the lhs of the normal equations.
The returned array is owned by the LeastSquares object and may be modified in-place by future calls to LeastSquares member functions, so it's best to promptly copy the result elsewhere.
If you want an Eigen object instead, just use getFisherMatrix().asEigen().
Definition at line 336 of file LeastSquares.cc.
int lsst.afw.math::LeastSquares::getRank | ( | ) | const |
Return the rank of the problem (number of nonzero Eigenvalues).
The returned value is always the same as getDimension() when the factorization is NORMAL_CHOLESKY (which may be incorrect, because a Cholesky decomposition is not rank-revealing).
Definition at line 359 of file LeastSquares.cc.
ndarray::Array< double const, 1, 1 > lsst.afw.math::LeastSquares::getSolution | ( | ) |
Return the vector solution to the least squares problem.
The returned array is owned by the LeastSquares object and may be modified in-place by future calls to LeastSquares member functions, so it's best to promptly copy the result elsewhere.
If you want an Eigen object instead, just use getSolution().asEigen().
The solution is cached the first time this member function is called, and will be reused unless the matrices are reset or the threshold is changed.
Definition at line 326 of file LeastSquares.cc.
double lsst.afw.math::LeastSquares::getThreshold | ( | ) | const |
Get the threshold used to determine when to truncate Eigenvalues.
Definition at line 324 of file LeastSquares.cc.
|
inline |
Reset the design matrix and data vector given as ndarrays; dimension must not change.
Definition at line 123 of file LeastSquares.h.
|
inline |
Reset the design matrix and data vector given as Eigen objects; dimension must not change.
Definition at line 138 of file LeastSquares.h.
|
inline |
Reset the design matrix given as an ndarray; dimension and data are not changed.
Definition at line 149 of file LeastSquares.h.
|
inline |
Reset the design matrix given as an Eigen object; dimension and data are not changed.
Definition at line 156 of file LeastSquares.h.
|
inline |
Reset the terms in the normal equations given as ndarrays; dimension must not change.
Definition at line 187 of file LeastSquares.h.
|
inline |
Reset the terms in the normal equations given as Eigen objects; dimension must not change.
Definition at line 202 of file LeastSquares.h.
void lsst.afw.math::LeastSquares::setThreshold | ( | double | threshold | ) |
Set the threshold used to determine when to truncate Eigenvalues.
The rank of the matrix is determined by comparing the product of this threshold and the first (largest) element of the array returned by getDiagnostic() to all other elements of that array. Elements smaller than this product are ignored and reduce the rank.
In the DIRECT_SVD case, the diagnostic array contains the singular values of the design matrix, while in the NORMAL_EIGENSYSTEM case the diagnostic array holds the Eigenvalues of the Fisher matrix, and the latter are the square of the former. The default threshold is the same (std::numeric_limits<double>::epsilon()) in both cases, reflecting the fact that using the normal equations squares the condition number of the problem.
The NORMAL_CHOLESKY method does not use the threshold and assumes the problem is full-rank.
Definition at line 317 of file LeastSquares.cc.
|
private |
Definition at line 353 of file LeastSquares.h.