times

operator fun Int.times(vector: DynamicVector): DynamicVector(source)
operator fun <R : Nat, C : Nat> Double.times(matrix: Matrix<R, C>): Matrix<R, C>(source)
operator fun <R : Nat, C : Nat> Int.times(matrix: Matrix<R, C>): Matrix<R, C>(source)
operator fun <N : Nat> Double.times(vector: Vector<N>): Vector<N>(source)
operator fun <N : Nat> Int.times(vector: Vector<N>): Vector<N>(source)

Scalar multiplication from the left.