RectangularMatrix(Int32, Int32) Constructor

Initializes a rectangular matrix with the given dimensions.

Definition

Namespace: Meta.Numerics.Matrices
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public RectangularMatrix(
	int rowCount,
	int columnCount
)

Parameters

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

Exceptions

ArgumentOutOfRangeExceptionrowCount or columnCount is less than one.

See Also