Constructs a DoubleSparseFact for the given sparse matrix data in compressed row format.

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

Syntax

C#
public DoubleSparseFact(
	DoubleCsrSparseMatrix S
)
Visual Basic (Declaration)
Public Sub New ( _
	S As DoubleCsrSparseMatrix _
)
Visual C++
public:
DoubleSparseFact(
	DoubleCsrSparseMatrix^ S
)

Parameters

S
Type: CenterSpace.NMath.Matrix..::.DoubleCsrSparseMatrix
A square sparse matrix.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if the matrix S is not square.

See Also