Class FloatSymPDTriDiagFact represents the LDL' factorization of a symmetric, positive definite, tridiagonal matrix of single-precision floating point numbers.

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

Syntax

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

Remarks

The factorization has the form:
CopyC#
A = LDL'
where D is diagonal and L is unit lower bidiagonal (L' is the transpose of the matrix L).

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Matrix..::.FloatSymPDTriDiagFact

See Also