Feeds
답변 있음
Count the number of non-zero elements of a column/row of a 2D-Matrix?
a = [3 0 0; 0 2 0; 1 0 0]; To get the no of non zero columns: sum( all( a == 0, 1 ) ); To get the no of non zero rows: sum...
Count the number of non-zero elements of a column/row of a 2D-Matrix?
a = [3 0 0; 0 2 0; 1 0 0]; To get the no of non zero columns: sum( all( a == 0, 1 ) ); To get the no of non zero rows: sum...
10년 초과 전 | 4