Click or drag to resize

RectangularMatrix Constructor (Int32, Int32)

Initializes a rectangular matrix with the given dimensions.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public RectangularMatrix(
	int rowCount,
	int columnCount
)

Parameters

rowCount
Type: SystemInt32
The number of rows.
columnCount
Type: SystemInt32
The number of columns.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionrowCount or columnCount is less than one.
See Also