MatrixSetMatrix Method (Int32, 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: 19.1.398.0 (19.1.398.0)
Syntaxpublic void SetMatrix(
int[] rowArray,
int firstColumn,
int numberOfColumns,
Matrix origin
)
Public Sub SetMatrix (
rowArray As Integer(),
firstColumn As Integer,
numberOfColumns As Integer,
origin As Matrix
)
public:
void SetMatrix(
array<int>^ rowArray,
int firstColumn,
int numberOfColumns,
Matrix^ origin
)
member SetMatrix :
rowArray : int[] *
firstColumn : int *
numberOfColumns : int *
origin : Matrix -> unit
Parameters
- rowArray
- Type: SystemInt32
Array of indices of rows to to receive input from the originmatrix. - firstColumn
- Type: SystemInt32
Inclusive initial index of columns to receive input from the origin matrix. - numberOfColumns
- Type: SystemInt32
Number 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.
ExceptionsException | Condition |
---|
ArgumentNullException |
Thrown if origin is .
|
ArgumentOutOfRangeException |
Thrown if firstColumn, or numberOfColumns is less than 0.
|
ArgumentException |
Thrown if firstColumn plus numberOfColumns is greater than the column dimension of this matrix,
or if the row dimension of origin is not equal to the length of rowArray,
or if the column dimension of origin is not equal to numberOfColumns,
or if rowArray contains values less than zero or greater than or equal to the row dimension of this matrix.
|
See Also