Click or drag to resize

MatrixGetMatrix Method (Int32, Int32, Int32, Matrix)

Places the values of a subsection of this matrix into the given matrix. The destination matrix must match the dimensions of the requested submatrix.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public void GetMatrix(
	int[] rowArray,
	int firstColumn,
	int numberOfColumns,
	Matrix destination
)

Parameters

rowArray
Type: SystemInt32
Array of indices of rows to output from this matrix.
firstColumn
Type: SystemInt32
Inclusive initial index of columns to output from this matrix.
numberOfColumns
Type: SystemInt32
Number of columns to output from this matrix.
destination
Type: AGI.Foundation.CoordinatesMatrix
The matrix to fill with the values of the submatrix.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when rowArray or destination is .
ArgumentOutOfRangeException Thrown when firstColumn or numberOfColumns is less than 0.
ArgumentException Thrown when firstColumn plus numberOfColumns is greater than the column dimension of this matrix, or when the row dimension of destination is not equal to the length of rowArray, or when the column dimension of destination is not equal to numberOfColumns, or when rowArray contains values less than zero or greater than or equal to the row dimension of this matrix.
See Also