times

operator fun times(other: DynamicMatrix): DynamicMatrix(source)

Multiplies this matrix by another matrix. The number of columns in this matrix must match the number of rows in the other matrix.


open operator fun times(scalar: Double): DynamicMatrix(source)
open operator fun times(scalar: Number): DynamicMatrix(source)

Multiplies this matrix by a scalar.