3D hypercube to 2D array

1 回表示 (過去 30 日間)
KF
KF 2020 年 12 月 9 日
コメント済み: Ameer Hamza 2020 年 12 月 9 日
Hi,
I have a 3D hypercube of dimensions 250x250x150 and I am looking to make it 2D, expanding left to right along the 250x250 array to create a new array that is 62500x150. Would reshape(A,62500,150) work? I would essentially like my z-coordinate to become my y, and the x and y to become x.
Thanks in advance.

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 12 月 9 日
編集済み: Ameer Hamza 2020 年 12 月 9 日
No, If you want to read the elements left to right then first you need to permute the 1st and 2nd dimensions
A; % 250x250x150
B = reshape(permute(A,[2 1 3]), [], 150);
  4 件のコメント
KF
KF 2020 年 12 月 9 日
Does
C = permute(reshape(B,250,250,150),[2 1 3])
work?
Ameer Hamza
Ameer Hamza 2020 年 12 月 9 日
Yes, thats correct.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeIndustrial Statistics についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by