フィルターのクリア

Adressing

1 回表示 (過去 30 日間)
developer
developer 2011 年 9 月 27 日
Hello, If i have:
A=[1 2 3 ;7 5 3;9 8 3;11 53 45]
A =
1 2 3
7 5 3
9 8 3
11 53 45
and i do
>> A(9)
ans =
3
How can i know the row and coloumn through its index value ???
Thanks

採用された回答

Fangjun Jiang
Fangjun Jiang 2011 年 9 月 27 日
help sub2ind
help ind2sub
[row,col]=ind2sub(size(A),9)
I guess you mean this:
A=[1 2 3 ;7 5 3;9 8 3;11 53 45];
[Row,Col]=find(A==9)
  3 件のコメント
Fangjun Jiang
Fangjun Jiang 2011 年 9 月 27 日
What do you mean? You can't run this?
A=magic(3);[row,col]=ind2sub(size(A),9)
Fangjun Jiang
Fangjun Jiang 2011 年 9 月 27 日
Okay, I see! See update.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by