Dear all: I have a 5*2 matrix. i want to find out the row and column of a special value.let A=[1 2;4 5; 1 8;2 6;9 7] I want to find the row and column of 9 and 7.how can i do this?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
fariba amini
am 21 Jun. 2016
Beantwortet: Thorsten
am 21 Jun. 2016
Dear all: I have a 5*2 matrix. I want to find out the row and column of a special value.let A=[1 2;4 5; 1 8;2 6;9 7] I want to find the row and column of 9 and 7 toghether.how can i do this?
0 Kommentare
Akzeptierte Antwort
Thorsten
am 21 Jun. 2016
If your matrix has the same number of columns as your vector, as in your example, you just have to find the row:
r = find(ismember(A, [9 7], 'rows'))
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!