Click or drag to resize

SparseMatrixFactT Class

Abstract base class for sparse matrix factorizations using the Parallel Direct Sparse Solver Interface (PARDISO).
Inheritance Hierarchy

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public abstract class SparseMatrixFact<T>

Type Parameters

T
Matrix element type.

The SparseMatrixFactT type exposes the following members.

Constructors
 NameDescription
Public methodSparseMatrixFactT Constructs a factorization for the given sparse matrix.
Top
Properties
 NameDescription
Public propertyErrorStatus Gets the error status for this factorization.
Top
Methods
 NameDescription
Protected methodFactor Abstract method to be implemented by deriving classes.
Public methodFactor(SparseMatrixDataCompressedSparseRowT, T) Factors the input sparse matrix.
Protected methodSetError Maps the given MKL integer error code to the appropriate enum value.
Top
Fields
 NameDescription
Protected fielderrorStatus_ The factorization error for the latest factorization.
Protected fieldS_ The sparse matrix in Compressed Row format that is being factored.
Top
Remarks
Only types double and DoubleComplex are currently supported.
See Also