multiply

public boolean multiply(Matrix input)

This multiplies a Matrix to this Matrix.

Return

returns if the operation was successful

Parameters

input

the Matrix to multiply to this. Nothing will change in this Matrix


public static Matrix multiply(Matrix one, Matrix two)

This multiplies a Matrix to another Matrix. This will not change any data in the two input Matrices.

Return

returns if the operation was successful

Parameters

one

the first Matrix to multiply.

two

the second Matrix to multiply