Click or drag to resize
CMat Operators

The CMat type exposes the following members.

Operators
  NameDescription
Public operatorStatic memberAdditionAssignment
Adds one matrix to another.
Public operatorStatic memberDivisionAssignment
Scales a matrix by a constant divisor. The matrix is updated in place, rather than a new matrix being created.
Public operatorStatic memberMultiply(CMat, CMat)
Computes the product of two matrices. The first matrix must have the same number of columns as the second matrix has rows.
Public operatorStatic memberMultiply(CMat, CVec)
Computes the product of a matrix and a vector. The vector's length must match the numder of columns in the matrix.
Public operatorStatic memberMultiplyAssignment
Scales a matrix by a constant multiplier. The matrix is updated in place, rather than a new matrix being created.
Public operatorStatic memberMultiplyBang
Computes the Kronecker product of two matrices
Top
See Also