access the row and col of a matrix
5 ビュー (過去 30 日間)
古いコメントを表示
i have a matrix
A = [11 12 13
14 15 16
17 18 19];
now i take a value 6... how can i get the value there and and row and column....
eg: value = 16
row = 2
col = 3
0 件のコメント
採用された回答
その他の回答 (2 件)
dbmn
2017 年 4 月 21 日
2 Possibilities
Easiest: row column
A(2,3)
Second possibility (by element count)
A(8)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!