Class FloatQRDecomp represents the QR decomposition of a general matrix.

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

Syntax

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

Remarks

A QR decomposition is a representation of a matrix A of the form
CopyC#
AP = QR
where P is a permutation matrix, Q is orthogonal, and R is upper trapezoidal (upper triangular if A has more rows than columns and has full rank).

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Matrix..::.FloatQRDecomp

See Also