ComplexMatrix.GetMatrix Method (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: 25.1.421.0 (25.1.421.0)
Syntaxpublic void GetMatrix(
int[] rowArray,
int[] columnArray,
ComplexMatrix destination
)
Public Sub GetMatrix (
rowArray As Integer(),
columnArray As Integer(),
destination As ComplexMatrix
)
public:
void GetMatrix(
array<int>^ rowArray,
array<int>^ columnArray,
ComplexMatrix^ destination
)
member GetMatrix :
rowArray : int[] *
columnArray : int[] *
destination : ComplexMatrix -> unit
Parameters
- rowArray
- Type:System.Int32[]
Array of indices 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.ComplexMatrix
The matrix to fill with the values of the submatrix.
ExceptionsException | Condition |
---|
ArgumentNullException |
Thrown when rowArray, columnArray, or destination is null.
|
ArgumentException |
Thrown when the row dimension of destination is not equal to the length of rowArray,
or when the column dimension of destination is not equal to the length of columnArray,
or when rowArray contains values less than zero or greater than or equal to the row dimension of this matrix,
or when columnArray contains values less than zero or greater than or equal to the column dimension of this matrix.
|
See Also