Class FloatTriDiagFact represents the LU factorization of a 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 FloatTriDiagFact : ICloneable
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class FloatTriDiagFact _
	Implements ICloneable
Visual C++
[SerializableAttribute]
public ref class FloatTriDiagFact : ICloneable

Remarks

The factorization has the form A = LU where L is a product of permutation and unit lower bidiagonal matrices and U is upper triangular with nonzeros in only the main diagonal and first two superdiagonals.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Matrix..::.FloatTriDiagFact

See Also