Write an ARM assembly program to control whether a matrix is symmetric or not. First of all, control whether the input matrix is a square matrix or not. If the input matrix is not a square matrix then it can not be symmetric. If the input matrix is a square matrix, then you can check the symmetry property. Don't forget the values of the diagonal elements (from left top to right bottom) are not important for symmetry. You should define your own matrix, the number of rows, and the number of columns in your code. Take an example for a 7×7 matrix. Each value should be 32-bit signed integer. Be careful in comparisons of signed numbers. You should assemble (compile) your code and simulate your code. Give the simulation screenshots and results. Your code have to work correctly in full manner.



Answer :

Other Questions