how to convert 1D element into 2D element in a matirx?

1 回表示 (過去 30 日間)
sheno39
sheno39 2013 年 10 月 17 日
コメント済み: Andrei Bobrov 2013 年 10 月 18 日
hi, i need to find the location of elements in a matrix as (row,column) value. what function is used to get the row and column of a element?
  2 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 10 月 17 日
Your title does not match the content of your question
sheno39
sheno39 2013 年 10 月 17 日
sir, i need to find the row,column value for each element in a matrix

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

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 10 月 17 日
編集済み: Azzi Abdelmalek 2013 年 10 月 17 日
Use find function
doc find
Example
A=[1 2 3;4 5 6;7 8 9]
[ii,jj]=find(A)

その他の回答 (1 件)

Andrei Bobrov
Andrei Bobrov 2013 年 10 月 17 日
A = [4 0 3 0
4 4 4 -3
-3 -3 2 -3
5 0 -1 5]
s = size(A);
[irow,icol] = ndgrid(1:s(1),1:s(2));
out = [irow(:),icol(:),A(:)];
  3 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 10 月 18 日
Can you explain, for example, why, for locatn(1,5) , it should be 17 and not 3
Andrei Bobrov
Andrei Bobrov 2013 年 10 月 18 日
see here

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

カテゴリ

Help Center および File ExchangeRead, Write, and Modify Image についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by