rwlogo
SourcePro C++ 12.0

SourcePro® C++ API Reference Guide



   SourcePro C++
Documentation Home

RWLeastSqSV< TypeT, SVDCalc > Class Template Reference
[Least Squares Factorization]

Represents a factorization of a system of equations with no exact solution such that the singular value method of least squares can be used. More...

#include <rw/lapack/lssv.h>

Inheritance diagram for RWLeastSqSV< TypeT, SVDCalc >:
RWSVDecomp< TypeT, SVDCalc >

List of all members.

Public Member Functions

 RWLeastSqSV ()
 RWLeastSqSV (const RWGenMat< TypeT > &A, double tol=0)
 RWLeastSqSV (const RWSVDecomp< TypeT, SVDCalc > &A, double tol=0)
RWMathVec< TypeT > residual (const RWMathVec< TypeT > &b) const
rw_numeric_traits< TypeT >
::norm_type 
residualNorm (const RWMathVec< TypeT > &b) const
RWMathVec< TypeT > solve (const RWMathVec< TypeT > &b) const

Detailed Description

template<class TypeT, class SVDCalc>
class RWLeastSqSV< TypeT, SVDCalc >

A linear system of equations has the form $ Ax = b $, where A contains more rows than columns and generally has no exact solution; it is overdetermined. The best that we can do is to find a solution vector x such that the norm of the residual vector, $ Ax-b $, is made as small as possible. The vector x is then a solution in the least squares sense, and this sort of problem is called a least squares problem.

There are three classes in the Linear Algebra Module for solving least squares problems. The approach is to construct a factorization of the matrix A that can be used to solve the problem. The classes RWLeastSqCh<T> RWLeastSqQR<T,QRCalc> and RWLeastSqSV<T,SVDCalc> encapsulate this factorization object. There are three methods provided:

Which method you choose depends on the trade-off between speed and robustness that you want to make. As you move down the list, the methods decrease in speed, but increase in accuracy and robustness.

A system of equations $ Ax = b $ is underdetermined if the columns of A are linearly dependent. In this case, there are infinitely many solutions. Often, the one that is desired is the one with minimum norm. The classes RWLeastSqQR<T,QRCalc> and RWLeastSqSV<T> allow you to compute this solution.

Note that the classes RWLeastSqQR<T,QRCalc> and RWLeastSqSV<T> are publicly derived from their underlying decomposition types, so that advanced users can manipulate the underlying decomposition directly.

Note:
For greater flexibility with RWLeastSqQR<T,QRCalc>, the user can implement this method, or the Linear Algebra Module provides two classes to perform this function - RWQRCalc<T> and RWQRCalcP3<T>. Please see their descriptions in this reference guide for more information.

Synopsis

 #include <rw/lapack/lsch.h>
 #include <rw/lapack/lsqr.h>
 #include <rw/lapack/lssv.h>
 #include <rw/lapack/dvddccalc.h>

 RWLeastSqSV<double, RWSVDDivConqCalc<double> > SVD(A);   // A is
                                            // an RWGenMat<double>
 RWMathVec<double> x = SVD.solve(b);  // b is an RWMathVec<double>

Examples

 // Find the least squares (if overdetermined) or
 // minimum norm (if underdetermined) solution to
 // the linear system of equations Ax=b. Also input
 // a tolerance called epsilon which represents the
 // accuracy of the entries in A. This makes the
 // procedure robust in the event that A has nearly
 // linearly dependent columns.

 #include <iostream>
 #include <rw/lapack/lsch.h>
 #include <rw/lapack/lsqr.h>
 #include <rw/lapack/lssv.h>
 #include <rw/lapack/svddccalc.h>

 int main()
 {
     RWGenMat<double> A;
     double tol;
     RWMathVec<double> b;
     std::cin >> A >> tol >> b;
     RWLeastSqSV<double, RWSVDDivConqCalc<double>
                >decomp (A,tol);
     RWMathVec<double> x = decomp.solve(b);
     std::cout << "Solution is " << x << std::endl;
     return 0;
 }

Constructor & Destructor Documentation

template<class TypeT, class SVDCalc>
RWLeastSqSV< TypeT, SVDCalc >::RWLeastSqSV (  ) 

Default constructor. Builds an empty decomposition. The decomposition is filled in using the factor function.

template<class TypeT, class SVDCalc>
RWLeastSqSV< TypeT, SVDCalc >::RWLeastSqSV ( const RWGenMat< TypeT > &  A,
double  tol = 0 
)

Constructs a factorization representing the given matrix. The supplied tolerance tells when to consider entries along the diagonal of the underlying decomposition as 0. The tolerance should indicate the accuracy to which you know entries in A.

template<class TypeT, class SVDCalc>
RWLeastSqSV< TypeT, SVDCalc >::RWLeastSqSV ( const RWSVDecomp< TypeT, SVDCalc > &  A,
double  tol = 0 
)

Constructs a factorization representing the linear system represented by the given decomposition. The parameter tol tells when to consider entries along the diagonal of the given SV decomposition as 0. The tolerance should indicate the accuracy to which you know the entries in the matrix.


Member Function Documentation

template<class TypeT, class SVDCalc>
RWMathVec<TypeT> RWLeastSqSV< TypeT, SVDCalc >::residual ( const RWMathVec< TypeT > &  b  )  const

Returns the residual vector, $ b-Ax $, associated with the right-hand side vector b and the corresponding least squares solution vector x

template<class TypeT, class SVDCalc>
rw_numeric_traits<TypeT>::norm_type RWLeastSqSV< TypeT, SVDCalc >::residualNorm ( const RWMathVec< TypeT > &  b  )  const

Returns the norm of the residual vector, $ (b-Ax)'(b-Ax) $, associated with the right-hand side vector b and the corresponding least squares solution vector x.

template<class TypeT, class SVDCalc>
RWMathVec<TypeT> RWLeastSqSV< TypeT, SVDCalc >::solve ( const RWMathVec< TypeT > &  b  )  const

Returns the solution to the least squares problem for the given right-hand-side vector b. If the system matrix is overdetermined, this is the vector that minimizes the norm of the residual vector. If the system matrix is not overdetermined, this is the minimum norm vector that satisfies the system equations.

 All Classes Functions Variables Typedefs Enumerations Enumerator Friends

© Copyright Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave and SourcePro are registered trademarks of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.
Contact Rogue Wave about documentation or support issues.