Filter löschen
Filter löschen

i used find command to locate the position for a particular number. it just mentions the position. how to find the corresponding row and column of the number

1 Ansicht (letzte 30 Tage)
i used find command to locate the position for a particular number. it just mentions the position. how to find the corresponding row and column of the number a=[21 22 23;24 28 25;26 28 27]; i would like to know the row and column for number 28...

Akzeptierte Antwort

the cyclist
the cyclist am 4 Jul. 2013
Bearbeitet: the cyclist am 4 Jul. 2013
Use find() with two output arguments
[i,j] = find(a==28)
as described in the documentation
>> doc find

Weitere Antworten (0)

Kategorien

Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by