MATLAB
You need to write a code using nested while or for loops to calculate the multiplication of two matrices: A*B. Notice that using the A*B operation in MATLAB is not accepted.
1. The program should be written to work for any two arbitrary matrices.
2. The program should first check the dimensions of the two matrices, and only proceed if the two matrices have the correct dimensions, so that the A*B is allowed. In case the A*B is not allowed, the code should give a notice that multiplication is not allowed.
3. This is an individual bonus project, and not a group project.
4. This is a bonus project, meaning it is not mandatory and it is going to be additional points towards your final grade.
5. After you have finished the code, you must submit the MATLAB script file (*.m) on Canvas under assignment Bonus program.
6. Your code will be checked with arbitrary matrices on MATLAB, so make sure that your code is going to be executed without any error.