How do I delete slices in 3D-Array?

Hey there,
I have a multidimensional Array where some of the slices along the third dimension only contains zeros in rows and columns. How do I delete those?
Thanks :)

2 件のコメント

Saravanan Sengottuvel
Saravanan Sengottuvel 2021 年 4 月 8 日
Generating an example 3D array that has 10 slices
A = repmat([0 0 0 0; 1 0 0 0; 1 0 1 0],[1 1 10]);
Modifying the 4th & 8th slice to contain only zeros in rows and columns
A(:,:,4)=[0 0 0 0;0 0 0 0;0 0 0 0];
A(:,:,8)=[0 0 0 0;0 0 0 0;0 0 0 0];
Find the slice index in 3rd dimension that has only zeros in rows and columns
idx = all(A == 0, [1 2])
Now, delete the slices that has zeros from the original 3D array A
A(:,:,idx) = []
I hope this gives you an idea how to solve your problem.
Kay Schmidt
Kay Schmidt 2021 年 4 月 8 日
編集済み: Stephen23 2021 年 4 月 8 日
Thanks, works perfectly!

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

 採用された回答

Matt J
Matt J 2021 年 4 月 8 日

0 投票

Saravanan Sengottuvel's answer moved here:
Generating an example 3D array that has 10 slices
A = repmat([0 0 0 0; 1 0 0 0; 1 0 1 0],[1 1 10]);
Modifying the 4th & 8th slice to contain only zeros in rows and columns
A(:,:,4)=[0 0 0 0;0 0 0 0;0 0 0 0];
A(:,:,8)=[0 0 0 0;0 0 0 0;0 0 0 0]
A =
A(:,:,1) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,2) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,3) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,4) = 0 0 0 0 0 0 0 0 0 0 0 0 A(:,:,5) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,6) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,7) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,8) = 0 0 0 0 0 0 0 0 0 0 0 0 A(:,:,9) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,10) = 0 0 0 0 1 0 0 0 1 0 1 0
Find the slice index in 3rd dimension that has only zeros in rows and columns
idx = all(A == 0, [1 2]);
Now, delete the slices that has zeros from the original 3D array A
A(:,:,idx) = []
A =
A(:,:,1) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,2) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,3) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,4) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,5) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,6) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,7) = 0 0 0 0 1 0 0 0 1 0 1 0 A(:,:,8) = 0 0 0 0 1 0 0 0 1 0 1 0
I hope this gives you an idea how to solve your problem.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

製品

リリース

R2020b

質問済み:

2021 年 4 月 8 日

編集済み:

2021 年 4 月 8 日

Community Treasure Hunt

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

Start Hunting!

Translated by