Write a function that accepts a matrix of floats and its dimensions, checks to see if it is square and returns an integer with the proper value according to the following chart:
Code:
0 not square
1 diagonal
2 upper triangular
3 lower triangular
4 symmetric
5 skew symmetric
6 none of the above
just give me the idea how to do a matrix plz

