A=[-1,1,1;0,-1,0;0,0,-1;1,0,0];
blnA = logical( A == -1 );
blnOut = find( sum( blnA' ) == 1 );
With that command
blnOut =
1 2 3
I have to find row which include only one -1 or other element in row must be 0 not 1. In that matrix, row including 1 is found too.
So 2nd row must be chosen.
Thank you

 Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 7 Jun. 2013
Bearbeitet: Andrei Bobrov am 7 Jun. 2013

0 Stimmen

blnOut = find(all(ismember(A,[0,-1]),2));

3 Kommentare

Andrei Bobrov
Andrei Bobrov am 7 Jun. 2013
corrected
Light
Light am 7 Jun. 2013
Bearbeitet: Light am 7 Jun. 2013
Same result. blnOut =
1
2
3
Must be the
blnOut=
2
3
i have to find row which including only -1. row 1 is including 1.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Programming finden Sie in Hilfe-Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by