How can i choose one result of numerical result?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have to choose higher row number (only one result)
A=[-1,1,1;0,-1,0;0,0,-1;1,0,0];
blnA = logical( A == -1 );
blnOut = find(all(ismember(A,[0,-1]),2));
blnOut =
2
3
2 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Iain
am 7 Jun. 2013
bInOut(end)
Swap end for something else if you want a different result, like 1 for the minimum, or 2 for the 2nd, etc.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!