Matrix.SetMatrix Method (Int32, 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: 25.1.421.0 (25.1.421.0)
Syntaxpublic void SetMatrix(
int firstRow,
int numberOfRows,
int firstColumn,
int numberOfColumns,
Matrix origin
)
Public Sub SetMatrix (
firstRow As Integer,
numberOfRows As Integer,
firstColumn As Integer,
numberOfColumns As Integer,
origin As Matrix
)
public:
void SetMatrix(
int firstRow,
int numberOfRows,
int firstColumn,
int numberOfColumns,
Matrix^ origin
)
member SetMatrix :
firstRow : int *
numberOfRows : int *
firstColumn : int *
numberOfColumns : int *
origin : Matrix -> unit
Parameters
- firstRow
- Type: System.Int32
Inclusive initial index of rows to receive input from the origin matrix. - numberOfRows
- Type: System.Int32
Number of rows to receive input from the origin matrix. - firstColumn
- Type: System.Int32
Inclusive initial index of columns to receive input from the origin matrix. - numberOfColumns
- Type: System.Int32
Number 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.
ExceptionsException | Condition |
---|
ArgumentNullException |
Thrown when origin is null.
|
ArgumentOutOfRangeException |
Thrown when firstRow, numberOfRows, firstColumn, or numberOfColumns is less than 0.
|
ArgumentException |
Thrown when firstRow plus numberOfRows is greater than the row dimension of this matrix,
or when firstColumn plus numberOfColumns is greater than the column dimension of this matrix,
or when the row dimension of origin is not equal to numberOfRows,
or when the column dimension of origin is not equal to numberOfColumns.
|
See Also