Question: Please use java to finish this program, thank you!! Exercise 3. Write a method to multiply two matrices. The header of the method is as


Please use java to finish this program, thank you!!
Exercise 3. Write a method to multiply two matrices. The header of the method is as follows public static double[ multiplyMatrix (double a, double b) Assume that the two input matrices are square (that is, they are n X n matrices) To multiply matrix a by matrix b, where c is the result matrix, use the formula a11 a12 a13 a21 a22 a23 a31 a32 a33 b11 b12 b13 b21 b22 b23 b31 b32 b33 c11 c12 c13 C21 c22 c23 c31 c32 c33 where cij = ailXb1j + ai2Xb21 + a13Xb31 Since we are only interested in the execution time, you may assume that all the elements of matrices a and b are identical. A sample screen dialog and output is given below Enter the size of each matrix: 100 Enter the matrix element (all elements of the matrices are assumed to be the same) 3. Execution time: 16 millisecs The template of the program with the main method is given below. It includes the code segment to get the execution time. Fill in the method to compute the product of the two matrices //Multiplication of two square matrices of size nX n each import java.util.Scanner; public class MatrixMult [ /*Main method/ public static void main (String[] args) Scanner keyboard- new Scanner (System.in); int n
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
