public static double[][] multiplyMatrix(double[][] a, double[][] b)
(Algebra: multiply two matrices) Write a method to multiply two matrices. The header of the method is:
public static double[][] multiplyMatrix(double[][] a, double[][] b)
To multiply matrix a by matrix b, the number of columns in a must be the same as the number of rows in b, and the two matrices must have elements of the same or compatible types. Let c be the result of the multiplication. Assume the column size of matrix a is n. Each element cij is ai1 × b1j + ai2 × b2j + g + ain × bnj. For example, for two 3 × 3 matrices a and b, c is
where cij = ai1 * b1j + ai2 * b2j + ai3 * b3j .
Write a test
Ps: pls do the same header and the output is the same on the picture thanks
Trending now
This is a popular solution!
Step by step
Solved in 2 steps