times

operator fun <K : Nat> times(other: Matrix<C, K>): Matrix<R, K>(source)

Multiplies this matrix by another matrix. The inner dimensions must match: (R x C) * (C x K) = (R x K)


operator fun times(other: Vector<C>): Vector<R>(source)

Multiplies this matrix by a vector. The vector's length must be equal to C.


open operator fun times(scalar: Double): Matrix<R, C>(source)
open operator fun times(scalar: Number): Matrix<R, C>(source)

Multiplies this matrix by a scalar.