MatrixSetMatrix Method (Int32, Int32, Matrix) |
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[] rowArray,
int[] columnArray,
Matrix origin
)
Public Sub SetMatrix (
rowArray As Integer(),
columnArray As Integer(),
origin As Matrix
)
public:
void SetMatrix(
array<int>^ rowArray,
array<int>^ columnArray,
Matrix^ origin
)
member SetMatrix :
rowArray : int[] *
columnArray : int[] *
origin : Matrix -> unit
Parameters
- rowArray
- Type: SystemInt32
Array of indices of rows to receive input from the origin matrix. - columnArray
- 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.
Exceptions Exception | Condition |
---|
ArgumentNullException |
Thrown when rowArray, columnArray, or origin is .
|
ArgumentException |
Thrown when the row dimension of origin is not equal to the length of rowArray,
or when the column dimension of origin 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