Code in Matlab please Write a program that will ask the user to enter the dimens
ID: 669812 • Letter: C
Question
Code in Matlab please
Write a program that will ask the user to enter the dimension of square matrices he/she wants to enter (let’s call it N). Then enter two matrices (let’s call them A and B), each of dimensions N by N (suggestion – don’t make N too big). Then, in your program, please calculate a new matrix (let’s call it C), which will be the sum of the two matrices you entered (i.e. C=A+B). Display the result matrix (matrix C) by just calling it in the program (i.e. by just typing C, without the semicolon behind it).