Matrix.GetMatrix 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: 25.1.421.0 (25.1.421.0)
Syntaxpublic void GetMatrix(
int firstRow,
int numberOfRows,
int[] columnArray,
Matrix destination
)
Public Sub GetMatrix (
firstRow As Integer,
numberOfRows As Integer,
columnArray As Integer(),
destination As Matrix
)
public:
void GetMatrix(
int firstRow,
int numberOfRows,
array<int>^ columnArray,
Matrix^ destination
)
member GetMatrix :
firstRow : int *
numberOfRows : int *
columnArray : int[] *
destination : Matrix -> unit
Parameters
- firstRow
- Type: System.Int32
Inclusive initial index of rows to output from this matrix. - numberOfRows
- Type: System.Int32
Number of rows to output from this matrix. - columnArray
- Type:System.Int32[]
Array of indices of columns to output from this matrix. - destination
- Type: AGI.Foundation.Coordinates.Matrix
The matrix to fill with the values of the submatrix.
ExceptionsException | Condition |
---|
ArgumentNullException |
Thrown when columnArray or destination is null.
|
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 destination is not equal to numberOfRows,
or when the column dimension of destination 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