Class FloatSVDLeastSq solves least squares problems by using a singular value decomposition.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
[SerializableAttribute]
public class FloatSVDLeastSq : ICloneable
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class FloatSVDLeastSq _
	Implements ICloneable
Visual C++
[SerializableAttribute]
public ref class FloatSVDLeastSq : ICloneable

Remarks

Use class FloatSVDLeastSq to find the minimal norm solution to the overdetermined linear system:
CopyC#
Ax = b
That is, find the vector x that minimizes the 2-norm of the residual vector Ax - b. Prerequisites on the matrix A are that it has more rows than columns, and is of full rank.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Matrix..::.FloatSVDLeastSq

See Also