Matrix.SetMatrix 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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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:System.Int32[]
Array of indices of rows to receive input from the origin matrix. - destinationColumnArray
- Type:System.Int32[]
Array of indices of columns to receive input from the origin matrix. - origin
- Type: AGI.Foundation.Coordinates.Matrix
The matrix containing the subset of values to set to the elements of this matrix. - originRowArray
- Type:System.Int32[]
Array of indices of rows to take input from the origin matrix. - originColumnArray
- Type:System.Int32[]
Array of indices of columns to take input from the origin matrix.
ExceptionsException | Condition |
---|
ArgumentNullException |
Thrown when destinationRowArray, destinationColumnArray, origin,originRowArray, or originColumnArray is null.
|
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