フィルターのクリア

collapse 3d data set to 2d data set using indexer for 3rd dimension without loops

2 ビュー (過去 30 日間)
Victor
Victor 2015 年 1 月 5 日
コメント済み: Victor 2015 年 1 月 5 日
I have a 3d data set. I want to collapse the 3rd dimension of this data set. I have a 2d data set which represents the points i want to keep in the collapsing of the 3d data set. How can I accomplish this without having to use loops? This is how I am doing it now (with loops):
data = rand(100,100,10);
[xx,yy] = meshgrid(1:100,1:100);
zz = round(.03*xx+.05*yy);
zz(zz<1) = 1;
for i = 1:size(data,1)
for j = 1:size(data,2)
collapsedData(i,j) = data(i,j,zz(i,j));
end
end
  2 件のコメント
Star Strider
Star Strider 2015 年 1 月 5 日
It’s difficult to understand what you are doing because we have no idea what ‘zz’ is or how it relates to ‘data’. If would help if you gave numeric example of ‘data’ and what you want ‘collapsedData’ to be.
Stephen23
Stephen23 2015 年 1 月 5 日
Note that you should not use i or j for the loop variables, as these are both names of the inbuilt imaginary unit .

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

採用された回答

David Young
David Young 2015 年 1 月 5 日
[yy, xx] = ndgrid(1:size(data,1), 1:size(data,2));
collapsedData = data(sub2ind(size(data), yy, xx, zz))

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by