IResizableMatrix<T>.Resize Method

Resizes a matrix.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
void Resize(
	int rowCount,
	int columnCount
)

Parameters

rowCount  Int32
The new number of rows.
columnCount  Int32
The new number of columns.

Exceptions

ArgumentOutOfRangeException

rowCount is less than zero.

-or-

columnCount is less than zero.

See Also