Matrix.GetMatrix 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: 25.1.421.0 (25.1.421.0)
Syntaxpublic Matrix GetMatrix(
int[] rowArray,
int firstColumn,
int numberOfColumns
)
Public Function GetMatrix (
rowArray As Integer(),
firstColumn As Integer,
numberOfColumns As Integer
) As Matrix
public:
Matrix^ GetMatrix(
array<int>^ rowArray,
int firstColumn,
int numberOfColumns
)
member GetMatrix :
rowArray : int[] *
firstColumn : int *
numberOfColumns : int -> Matrix
Parameters
- rowArray
- Type:System.Int32[]
Array of indices of rows to output from this matrix. - firstColumn
- Type: System.Int32
Inclusive initial index of columns to output from this matrix. - numberOfColumns
- Type: System.Int32
Number 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 when rowArray is null.
|
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 rowArray contains values less than zero or greater than or equal to the row dimension of this matrix.
|
See Also