MatrixOperation

Description

The MatrixOperation enumeration contains operations that must be carried out for the source matrix.

It is used by the following properties and methods:

Comments

All operations are executed elementwise. If matrices are different in size or have different number of elements in dimensions, the output matrix can be extended or truncated depending on the executed operation. Matrices should be equal in size during multiplication and division.

Available Values

Value Brief description
0 None. Do not perform any actions.
1 Assign. Set structure and values in accordance with the matrix passed as a parameter.
2 Append. Add values from the matrix passed as a parameter, to the current matrix (values are added to the beginning of the matrix, source data is replaced).
3 Add. Summation.
4 Subtract. Substraction.
5 Mul. Multiplication.
6 Division. Division.

See also:

System Assembly Enumerations