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

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

Syntax

C#
public abstract class SparseMatrixFact<T>
Visual Basic (Declaration)
Public MustInherit Class SparseMatrixFact(Of T)
Visual C++
generic<typename T>
public ref class SparseMatrixFact abstract

Type Parameters

T
Matrix element type.

Remarks

Only types double and DoubleComplex are currently supported.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Matrix..::.SparseMatrixFact<(Of <(T>)>)
    CenterSpace.NMath.Matrix..::.DoubleComplexSparseFact
    CenterSpace.NMath.Matrix..::.DoubleSparseFact

See Also