A square matrix, that is, one having the samenumber of rows and columns, A matri
ID: 3613210 • Letter: A
Question
A square matrix, that is, one having the samenumber of rows and columns, A matrix is called a "diagonal" matrixif its only nonzero elements are on the the diagonal. It is called"upper triangular" if all elements below the diagonal are 0, and"lower triangular" if all elements above the diagonal are 0. It is"symmetric" if element i,j is equal to element j,i and "skewsymmetric" if element i,j = -element j,i.Write a function that accepts a matrix of floats and itsdimensions, checks to see if it is square and returns an integerwith the proper value according to the following chart:
0 not square
1 diagonal
2 upper triangular
3 lower triangular
4 symmetric
5 skew symmetric
6 none of the above
The chart also includes precedence; that is, a diagonal matrix isalso upper triangular, lower triangular, symmetric and skewsymmetric, but the most important property is that it is diagonalso return 1. The zero matrix should be considereddiagonal.
A square matrix, that is, one having the samenumber of rows and columns, A matrix is called a "diagonal" matrixif its only nonzero elements are on the the diagonal. It is called"upper triangular" if all elements below the diagonal are 0, and"lower triangular" if all elements above the diagonal are 0. It is"symmetric" if element i,j is equal to element j,i and "skewsymmetric" if element i,j = -element j,i.
Write a function that accepts a matrix of floats and itsdimensions, checks to see if it is square and returns an integerwith the proper value according to the following chart:
0 not square
1 diagonal
2 upper triangular
3 lower triangular
4 symmetric
5 skew symmetric
6 none of the above
The chart also includes precedence; that is, a diagonal matrix isalso upper triangular, lower triangular, symmetric and skewsymmetric, but the most important property is that it is diagonalso return 1. The zero matrix should be considereddiagonal.