MatrixGetMatrix Method (Int32, Int32, Int32) |
Gets a new matrix with the values of the specified subset of this matrix.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 21.1.408.0 (21.1.408.0)
Syntaxpublic Matrix GetMatrix(
int firstRow,
int numberOfRows,
int[] columnArray
)
Public Function GetMatrix (
firstRow As Integer,
numberOfRows As Integer,
columnArray As Integer()
) As Matrix
public:
Matrix^ GetMatrix(
int firstRow,
int numberOfRows,
array<int>^ columnArray
)
member GetMatrix :
firstRow : int *
numberOfRows : int *
columnArray : int[] -> Matrix
Parameters
- firstRow
- Type: SystemInt32
Inclusive initial index of rows to output from this matrix. - numberOfRows
- Type: SystemInt32
Number of rows to output from this matrix. - columnArray
- Type: SystemInt32
Array of indices of columns to output from this matrix.
Return Value
Type:
MatrixA new matrix with the values of the specified subset of this matrix.
ExceptionsException | Condition |
---|
ArgumentNullException |
Thrown if columnArray is .
|
ArgumentOutOfRangeException |
Thrown if firstRow or numberOfRows is less than 0.
|
ArgumentException |
Thrown if firstRow plus numberOfRows is greater than the row dimension of this matrix,
or if columnArray contains values less than zero or greater than or equal to the column dimension of this matrix.
|
See Also