Click or drag to resize

Matrix Constructor (Int32, Int32)

Initializes a new instance instance with the specified dimensions.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
protected Matrix(
	int rowDimension,
	int columnDimension
)

Parameters

rowDimension
Type: SystemInt32
The number of rows in the new matrix.
columnDimension
Type: SystemInt32
The number of columns in the new matrix.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException Thrown when rowDimension or columnDimension are less than zero.
See Also