Constructs a sparse matrix from a SparseArray.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public SparseMatrix(
	SparseMatrix..::.SparseArray sparseArray
)
Visual Basic (Declaration)
Public Sub New ( _
	sparseArray As SparseMatrix..::.SparseArray _
)
Visual C++
public:
SparseMatrix(
	SparseMatrix..::.SparseArray^ sparseArray
)

Parameters

sparseArray
Type: Imsl.Math..::.SparseMatrix..::.SparseArray
A SparseArray used to initialize the sparse matrix. The field NumberOfNonZeros in SparseArray is not used for initialization, so it does not have to be set.

See Also