フィルターのクリア

Indexing one matrix using elements of another

3 ビュー (過去 30 日間)
Garima Sharma
Garima Sharma 2017 年 7 月 18 日
コメント済み: Garima Sharma 2017 年 7 月 18 日
I have a matrix p=[1,2,4] and want to retrieve elements of another matrix u =[1,11,7;2,3,5;9,10,8;15,16,17], using the column of p combined with its entry e.g. I want a matrix z=[1,3,17]
z(1,1) = u(entry in p(col1), 1); z(1,2) = u(entry in p(col2),2); z(1,3)=u(entry in p(col3), 3).
  1 件のコメント
Garima Sharma
Garima Sharma 2017 年 7 月 18 日
And I'm hoping for a solution without loops since my actual p matrix is 1000*1000, so I'd want the same behavior to replicate across rows of p. E.g. if p(2,1)=1, then z(2,1)=1, if p(2,2)=4, then z(2,2)=16.

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

採用された回答

the cyclist
the cyclist 2017 年 7 月 18 日
編集済み: the cyclist 2017 年 7 月 18 日
You'll need to use linear indexing (and convert your subscripts to get them):
z = u(sub2ind(size(u),p,1:numel(p)))
  1 件のコメント
Garima Sharma
Garima Sharma 2017 年 7 月 18 日
thanks a ton!

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

その他の回答 (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