IGLib  1.7.2
The IGLib base library for development of numerical, technical and business applications.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
IG.Num.SingularValueDecomposition Class Reference

Singular value decomposition of a matrix. More...

+ Inheritance diagram for IG.Num.SingularValueDecomposition:
+ Collaboration diagram for IG.Num.SingularValueDecomposition:

Public Member Functions

 SingularValueDecomposition (Matrix_MathNetNumerics A)
 Constructor. More...
 
 SingularValueDecomposition (Matrix A)
 Constructor. More...
 
void GetProduct (ref IMatrix product)
 Calculates the product (i.e. the original matrix of coefficients of a linear system of equations) of the current decomposition, and stores it to the specified matrix. More...
 
IMatrix GetProduct ()
 Calculates and returns the product (i.e. the original matrix of coefficients of a linear system of equations) of the current decomposition. More...
 
void Inverse (ref IMatrix inv)
 Calculates inverse of the decomposed matrix represented by the current object, and stores it in the specified matrix. More...
 
IMatrix Inverse ()
 Calculates and returns inverse of the decomposed matrix represented by the current object. More...
 
- Public Member Functions inherited from IG.Num.LinearSolverBase
virtual void Solve (IMatrix B, ref IMatrix X)
 Solves A*X = B (a set of linear systems of equations), where B is the matrix whose colums are right-hand sides of equations to be solved. Solutions are stored to the specified matrix. More...
 
IMatrix Solve (IMatrix B)
 Solves A*X = B (a set of linear systems of equations), where B is the matrix whose colums are right-hand sides of equations to be solved, and returns a matrix whose columns are solutions of the specified systems of equations. More...
 
virtual void Solve (IVector b, ref IVector x)
 Solves a system of linear equations A*x=b, and stores the solution in the specified vector. More...
 
IVector Solve (IVector b)
 Solves a system of linear equations A*x=b, and returns the solution. More...
 
- Public Member Functions inherited from IG.Num.ILinearSolver
void Solve (IMatrix B, ref IMatrix X)
 Solves A*X = B (a set of linear systems of equations), where B is the matrix whose colums are right-hand sides of equations to be solved. Solutions are stored to the specified matrix. More...
 
IMatrix Solve (IMatrix B)
 Solves A*X = B (a set of linear systems of equations), where B is the matrix whose colums are right-hand sides of equations to be solved, and returns a matrix whose columns are solutions of the specified systems of equations. More...
 
void Solve (IVector b, ref IVector x)
 Solves a system of linear equations A*x=b, and stores the solution in the specified vector. More...
 
IVector Solve (IVector b)
 Solves a system of linear equations A*x=b, and returns the solution. More...
 

Protected Member Functions

override MatrixBase_MathNetNumerics SolveMathNetNumerics (IMatrix righthandSides)
 Solves systems of linear equations with the specified right-hand sides and the current matrix decomposition by using the Math.Net Numerics library, and returns the result in Math.Net matrix form. More...
 
override VectorBase_MathNetNumerics SolveMathNetNumerics (IVector rightHandSides)
 Solves the system of linear equations with the specified right-hand sides and the current matrix decomposition by using the Math.Net Numerics library, and returns the result in Math.Net matrix form. More...
 

Protected Attributes

double _determinant
 
bool _determinantCalculated = false
 
- Protected Attributes inherited from IG.Num.LinearSolverBase
MatrixBase_MathNetNumerics _matrixSolution_MathNetNumerics
 
Matrix_MathNetNumerics _matrixRighthandSides_MathNetNumerics
 
VectorBase_MathNetNumerics _vectorSolution_MathNetNumerics
 
Vector_MathNetNumerics _vectorRighthandSides_MathNetNumerics
 
IVector auxB = null
 
IVector auxX = null
 

Properties

bool IsNonSingular [get]
 Indicates whether the matrix of coefficients of a linear system is nonsingular. More...
 
Matrix LeftSingularVectors [get]
 Returns the left singular vectors. More...
 
Vector SingularValues [get]
 Returns the singular values. More...
 
Matrix RightSingularVectors [get]
 Returns the right singular vectors. More...
 
double Determinant [get]
 Returns the determinant. More...
 
- Properties inherited from IG.Num.LinearSolverBase
object Lock [get]
 This object's central lock object to be used by other object. Do not use this object for locking in class' methods, for this you should use InternalLock. More...
 
- Properties inherited from IG.Num.ILinearSolver
bool IsNonSingular [get]
 Indicates whether the matrix of coefficients of a linear system represented by the current decomposition object, is nonsingular. More...
 
- Properties inherited from IG.Lib.ILockable
object Lock [get]
 

Private Attributes

MatrixBase_MathNetNumerics _inverse
 

Detailed Description

Singular value decomposition of a matrix.

Calculates eigenvectors and eigenvalues of a real matrix.

Objects of this class are immutable. Decomposition is calculated at initialization, and the decomposed matrix can not be replaced later.

Suppose M is an m-by-n matrix whose entries are real numbers. Then there exists a factorization of the form M = UΣVT where:

  • U is an m-by-m unitary matrix;
  • Σ is m-by-n diagonal matrix with nonnegative real numbers on the diagonal;
  • VT denotes transpose of V, an n-by-n unitary matrix; Such a factorization is called a singular-value decomposition of M. A common convention is to order the diagonal entries Σ(i,i) in descending order. In this case, the diagonal matrix Σ is uniquely determined by M (though the matrices U and V are not). The diagonal entries of Σ are known as the singular values of M.

$A Igor Feb09;

Constructor & Destructor Documentation

IG.Num.SingularValueDecomposition.SingularValueDecomposition ( Matrix_MathNetNumerics  A)
inline

Constructor.

Parameters
AMatrix to be decomposed.
IG.Num.SingularValueDecomposition.SingularValueDecomposition ( Matrix  A)
inline

Constructor.

Parameters
AMatrix to be decomposed.

Member Function Documentation

void IG.Num.SingularValueDecomposition.GetProduct ( ref IMatrix  product)
inline

Calculates the product (i.e. the original matrix of coefficients of a linear system of equations) of the current decomposition, and stores it to the specified matrix.

Parameters
productMatrix where re-calculated product of the decomposed matrix is stored.

Implements IG.Num.ILinearSolver.

References IG.Num.Matrix.Copy().

IMatrix IG.Num.SingularValueDecomposition.GetProduct ( )
inline

Calculates and returns the product (i.e. the original matrix of coefficients of a linear system of equations) of the current decomposition.

Implements IG.Num.ILinearSolver.

void IG.Num.SingularValueDecomposition.Inverse ( ref IMatrix  inv)
inline

Calculates inverse of the decomposed matrix represented by the current object, and stores it in the specified matrix.

Parameters
invMatrix where calculated inverse is stored.

Implements IG.Num.ILinearSolver.

References IG.Num.Matrix.Copy().

IMatrix IG.Num.SingularValueDecomposition.Inverse ( )
inline

Calculates and returns inverse of the decomposed matrix represented by the current object.

Implements IG.Num.ILinearSolver.

override MatrixBase_MathNetNumerics IG.Num.SingularValueDecomposition.SolveMathNetNumerics ( IMatrix  righthandSides)
inlineprotectedvirtual

Solves systems of linear equations with the specified right-hand sides and the current matrix decomposition by using the Math.Net Numerics library, and returns the result in Math.Net matrix form.

Parameters
righthandSidesMatrix that contains right-hand sides of the linear equations to be solved as its columns.
Returns
The Math.Net Numerics matrix whose columns contains solutions to the systems of linear equations whose right-hand sides are specified by yhe righthandSides parameter.

Reimplemented from IG.Num.LinearSolverBase.

References IG.Num.Matrix.Copy().

override VectorBase_MathNetNumerics IG.Num.SingularValueDecomposition.SolveMathNetNumerics ( IVector  rightHandSides)
inlineprotectedvirtual

Solves the system of linear equations with the specified right-hand sides and the current matrix decomposition by using the Math.Net Numerics library, and returns the result in Math.Net matrix form.

Parameters
rightHandSidesVector of right-hand sides of the linear equations to be solved.
Returns
The Math.Net Numerics vector whose columns contains solutions to the systems of linear equations whose right-hand sides are specified by yhe rightHandSides parameter.

Reimplemented from IG.Num.LinearSolverBase.

References IG.Num.VectorBase.Copy().

Member Data Documentation

double IG.Num.SingularValueDecomposition._determinant
protected
bool IG.Num.SingularValueDecomposition._determinantCalculated = false
protected
MatrixBase_MathNetNumerics IG.Num.SingularValueDecomposition._inverse
private

Property Documentation

bool IG.Num.SingularValueDecomposition.IsNonSingular
get

Indicates whether the matrix of coefficients of a linear system is nonsingular.

Returns
true if U, and hence A, is nonsingular.
Matrix IG.Num.SingularValueDecomposition.LeftSingularVectors
get

Returns the left singular vectors.

Vector IG.Num.SingularValueDecomposition.SingularValues
get

Returns the singular values.

Matrix IG.Num.SingularValueDecomposition.RightSingularVectors
get

Returns the right singular vectors.

double IG.Num.SingularValueDecomposition.Determinant
get

Returns the determinant.

Returns
det(A)
Exceptions
System.ArgumentExceptionMatrix must be square.

The documentation for this class was generated from the following file: