MatrixSetMatrix Method (Int32, Int32, Matrix, Int32, Int32) |
Sets the contents of a subset of this matrix to equal the values of the given origin matrix.
The origin 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 SetMatrix(
int[] destinationRowArray,
int[] destinationColumnArray,
Matrix origin,
int[] originRowArray,
int[] originColumnArray
)
Public Sub SetMatrix (
destinationRowArray As Integer(),
destinationColumnArray As Integer(),
origin As Matrix,
originRowArray As Integer(),
originColumnArray As Integer()
)
public:
void SetMatrix(
array<int>^ destinationRowArray,
array<int>^ destinationColumnArray,
Matrix^ origin,
array<int>^ originRowArray,
array<int>^ originColumnArray
)
member SetMatrix :
destinationRowArray : int[] *
destinationColumnArray : int[] *
origin : Matrix *
originRowArray : int[] *
originColumnArray : int[] -> unit
Parameters
- destinationRowArray
- Type: SystemInt32
Array of indices of rows to receive input from the origin matrix. - destinationColumnArray
- Type: SystemInt32
Array of indices of columns to receive input from the origin matrix. - origin
- Type: AGI.Foundation.CoordinatesMatrix
The matrix containing the subset of values to set to the elements of this matrix. - originRowArray
- Type: SystemInt32
Array of indices of rows to take input from the origin matrix. - originColumnArray
- Type: SystemInt32
Array of indices of columns to take input from the origin matrix.
Exceptions Exception | Condition |
---|
ArgumentNullException |
Thrown when destinationRowArray, destinationColumnArray, origin,originRowArray, or originColumnArray is .
|
ArgumentException |
Thrown when the length of destinationRowArray is not equal to the length of originRowArray,
or when the length of destinationColumnArray is not equal to the length of originColumnArray,
or when destinationRowArray contains values less than zero or greater than or equal to the row dimension of this matrix,
or when destinationColumnArray contains values less than zero or greater than or equal to the column dimension of this matrix,
or when originRowArray contains values less than zero or greater than or equal to the row dimension of origin,
or when originColumnArray contains values less than zero or greater than or equal to the column dimension of origin.
|
See Also