Click or drag to resize

FloatComplexLUFact Class

Class FloatComplexFact represents the LU factorization of a matrix of FloatComplex numbers.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreFloatComplexLUFact

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public class FloatComplexLUFact : ICloneable

The FloatComplexLUFact type exposes the following members.

Constructors
 NameDescription
Public methodFloatComplexLUFact Constructs a FloatComplexFact instance by factoring the given matrix.
Top
Properties
 NameDescription
Public propertyCols Gets the number of columns in the matrix represented by the factorization.
Public propertyIsGood Gets a boolean value which is true if the matrix factorization succeeded and the factorization may be used to solve eqations, compute determinants, inverses, and so on; otherwise false.
Public propertyIsSingular Gets a boolean value which is true if the matrix factored is singular; otherwise, false.
Public propertyL Gets the lower triangular matrix L from the factorization PA = LU, where A is the matrix that was factored.
Public propertyP Gets the permutation matrix P from the factorization PA = LU, where A is the matrix that was factored.
Public propertyPivots Gets an array of pivot indices. The row i was interchanged with row Pivots[i].
Public propertyRows Gets the number of rows in the matrix represented by the factorization.
Public propertyU Gets the upper triangular matrix U from the factorization PA = LU, where A is the matrix that was factored.
Top
Methods
 NameDescription
Public methodClone Creates a deep copy of this factorization.
Public methodConditionNumber Computes the reciprocal of the condition number of a given matrix in the specified norm type.
Public methodDeterminant Computes the determinant of the factored matrix.
Public methodFactor Factors the matrix A so that self represents the LU factorization of A.
Public methodInverse Computes the inverse of the factored matrix.
Public methodSolve(FloatComplexMatrix) Uses this LU factorization to solve the linear system AX = B.
Public methodSolve(FloatComplexVector) Uses the LU factorization of self to solve the linear system Ax = b.
Top
Remarks
LU factorization is a procedure for decomposing a matrix into a product of a lower triangular matrix and an upper triangular matrix. Given a matrix A, instances of the FloatComplexFact class factor A as follows:
C#
PA = LU
where P is a permutation matrix, L is a lower triangular matrix with ones on the diagonal, and U is an upper triangular matrix.
A FloatComplexFact instance is constructed by supplying a matrix to factor. An existing instance can be used to factor other matrices with the provided Factor() method. Read-only properties provide access to the permutation matrix P, lower triangular matrix L, and upper triangular matrix U.
See Also