ComplexMatrix.GetMatrix Method (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 ComplexMatrix GetMatrix(
int[] rowArray,
int[] columnArray
)
Public Function GetMatrix (
rowArray As Integer(),
columnArray As Integer()
) As ComplexMatrix
public:
ComplexMatrix^ GetMatrix(
array<int>^ rowArray,
array<int>^ columnArray
)
member GetMatrix :
rowArray : int[] *
columnArray : int[] -> ComplexMatrix
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.
Return Value
Type:
ComplexMatrixA new matrix with the values of the specified subset of this matrix.
ExceptionsException | Condition |
---|
ArgumentNullException |
Thrown when rowArray or columnArray is null.
|
ArgumentException |
Thrown 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