ComplexMatrixGetMatrix Method (Int32, Int32, Int32, Int32, ComplexMatrix) |
Assigns 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.2.419.0 (24.2.419.0)
Syntax public void GetMatrix(
int firstRow,
int numberOfRows,
int firstColumn,
int numberOfColumns,
ComplexMatrix destination
)
Public Sub GetMatrix (
firstRow As Integer,
numberOfRows As Integer,
firstColumn As Integer,
numberOfColumns As Integer,
destination As ComplexMatrix
)
public:
void GetMatrix(
int firstRow,
int numberOfRows,
int firstColumn,
int numberOfColumns,
ComplexMatrix^ destination
)
member GetMatrix :
firstRow : int *
numberOfRows : int *
firstColumn : int *
numberOfColumns : int *
destination : ComplexMatrix -> unit
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. - 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.CoordinatesComplexMatrix
The matrix to fill with the values of the submatrix.
Exceptions Exception | Condition |
---|
ArgumentNullException |
Thrown when destination is .
|
ArgumentOutOfRangeException |
Thrown when firstRow, numberOfRows, firstColumn, or numberOfColumns is less than 0.
|
ArgumentException |
Thrown when firstRow plus numberOfRows is greater than the row dimension of this matrix,
or when firstColumn plus numberOfColumns is greater than the column 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 numberOfColumns.
|
See Also