CMat Operators |
The CMat type exposes the following members.
Name | Description | |
---|---|---|
AdditionAssignment |
Adds one matrix to another.
| |
DivisionAssignment |
Scales a matrix by a constant divisor.
The matrix is updated in place, rather than a new matrix being created.
| |
Multiply(CMat, CMat) |
Computes the product of two matrices.
The first matrix must have the same number of columns as the second matrix has rows.
| |
Multiply(CMat, CVec) |
Computes the product of a matrix and a vector.
The vector's length must match the numder of columns in the matrix.
| |
MultiplyAssignment |
Scales a matrix by a constant multiplier.
The matrix is updated in place, rather than a new matrix being created.
| |
MultiplyBang |
Computes the Kronecker product of two matrices
|