times

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

Multiplies this matrix with another matrix and returns the resulting matrix.

Return

The resulting matrix after multiplication.

Parameters

other

The matrix to multiply with this matrix.

Throws

If the number of columns in this matrix does not match the number of rows in the other matrix.