Click or drag to resize

MatrixSetMatrix Method (Int32, Int32, Int32, Matrix)

Sets the contents of a subset of this matrix to equal the values of the given origin matrix. The origin 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 SetMatrix(
	int firstRow,
	int numberOfRows,
	int[] columnArray,
	Matrix origin
)

Parameters

firstRow
Type: SystemInt32
Inclusive initial index of rows to receive input from the origin matrix.
numberOfRows
Type: SystemInt32
Number of rows to receive input from the origin matrix.
columnArray
Type: SystemInt32
Array of indices of columns to receive input from the origin matrix.
origin
Type: AGI.Foundation.CoordinatesMatrix
The matrix containing the subset of values to set to the elements of this matrix.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when columnArray or origin is .
ArgumentOutOfRangeException Thrown when firstRow, or numberOfRows is less than 0.
ArgumentException Thrown when firstRow plus numberOfRows is greater than the row dimension of this matrix, or when the row dimension of origin is not equal to numberOfRows, or when the column dimension of origin is not equal to the length of columnArray, or when columnArray contains values less than zero or greater than or equal to the column dimension of this matrix.
See Also