We must multiply matrices that are comprised of the 3 x 4 matrix and 4 X 2 matrix. 1 2 -2 0 -1 3 -3 43
-3 4 7 2 X 0 9 = 18 60
6 0 3 1 1 -11 1 -20
4 -5
We must hard code to arrays to consist of the matrices above. Call a static method of the MatrixMult class called malt which a and b arrays(matrices) are passed. And we recieve back an integer. The matrix mult class should have no constructor. A single static method should be created and recieves two int arrays(matrices). The mult method should return an array that is the product matrix. The code in mult method should determine the dimensions of the matrices.
I have no idea what to do with this program. It sorta makes sense but I don't know where to go with it.