b = m * a
Multiplies the 3x3 matrix m by the 3-element column vector a and stores the result in the 3-element vector b.
m
a
b
The vector a can be updated directly by invoking mulV(m, a, a)
mulV(m, a, a)
the 3x3 matrix multiplication operand
the 3-element vector multiplication operand
a 3-element vector in which to store the result
b as the result of m * a
m * a
Generated using TypeDoc
b = m * a
Multiplies the 3x3 matrix
m
by the 3-element column vectora
and stores the result in the 3-element vectorb
.The vector
a
can be updated directly by invokingmulV(m, a, a)