CMat Operators

Liquid Quantum Simulator

CMat Operators

The CMat type exposes the following members.

Operators
  Name Description
Public operator Static member AdditionAssignment
Adds one matrix to another.
Public operator Static member DivisionAssignment
Scales a matrix by a constant divisor. The matrix is updated in place, rather than a new matrix being created.
Public operator Static member 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.
Public operator Static member 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.
Public operator Static member MultiplyAssignment
Scales a matrix by a constant multiplier. The matrix is updated in place, rather than a new matrix being created.
Public operator Static member MultiplyBang
Computes the Kronecker product of two matrices
Top
See Also