SparseMatrix<T> Constructor

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

SparseMatrix<T>(SerializationInfo, StreamingContext) Constructs a new sparse matrix from serialization data.
SparseMatrix<T>(Int32, Int32, ArrayAttributes) Constructs a new sparse matrix object.

SparseMatrix<T>(SerializationInfo, StreamingContext)

Constructs a new sparse matrix from serialization data.
C#
protected SparseMatrix(
	SerializationInfo info,
	StreamingContext context
)

Parameters

info  SerializationInfo
The data needed to serialize or deserialize the DenseMatrix<T>.
context  StreamingContext
The source and destination of a given serialized stream.

Remarks

This constructor is called internally by the .NET framework when a SparseMatrix<T> is deserialized.

SparseMatrix<T>(Int32, Int32, ArrayAttributes)

Constructs a new sparse matrix object.
C#
protected SparseMatrix(
	int rowCount,
	int columnCount,
	ArrayAttributes attributes
)

Parameters

rowCount  Int32
The number of rows.
columnCount  Int32
The number of columns.
attributes  ArrayAttributes
The attributes of the matrix.

See Also