How to descend order column that have maximum values zero in MATLAB

조회 수: 2 (최근 30일)
safaa
safaa 2017년 3월 31일
댓글: safaa 2017년 3월 31일
For example : A=[ 0 3 2 5 0 3 1 1 2 2; 5 8 6 6 1 0 0 2 3 3; 7 9 9 7 0 0 0 0 0 0; 8 10 10 9 9 8 10 6 5 7;] And column order that have maximum values zero : 5 6 7 1 8 9 10 2 3 4

채택된 답변

KSSV
KSSV 2017년 3월 31일
A=[ 0 3 2 5 0 3 1 1 2 2; 5 8 6 6 1 0 0 2 3 3; 7 9 9 7 0 0 0 0 0 0; 8 10 10 9 9 8 10 6 5 7;] ;
[m,n] = size(A) ;
c = zeros(m,1) ;
for i = 1:m
c(i) = n-nnz(A(i,:)) ;
end
[val,idx] = sort(c) ;
A = A(idx,:) ;

추가 답변 (1개)

Thorsten
Thorsten 2017년 3월 31일
[~, idx] = sort(sum(A == 0), 'descend')

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by