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 回表示 (過去 30 日間)
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...

採用された回答

the cyclist
the cyclist 2013 年 7 月 4 日
編集済み: the cyclist 2013 年 7 月 4 日
Use find() with two output arguments
[i,j] = find(a==28)
as described in the documentation
>> doc find

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by