IResizableMatrix<T>.Resize Method

Resizes a matrix.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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