times

abstract operator fun times(other: M): M

Multiplies this matrix by the other matrix of the same size.

abstract operator fun times(vector: V): V

Multiplies this matrix by a given vector.

abstract operator fun times(number: Float): M

Multiplies this matrix by a given number.