How to remove a 2d array from a 3d array?

2 vues (au cours des 30 derniers jours)
N/A
N/A le 28 Mar 2021
Commenté : N/A le 28 Mar 2021
I want to remove all 2d arrays containing all zeros, but the size of the 3d array that I am working with changes each time I remove a 2d array. How do I do this? My sample code that does not quite get the job done is below.
Q = length(LargeArray);
ii = 1;
while ii < Q
if ~all(any(LargeArray(:,:,ii)))
LargeArray(:,:,ii)=[];
end
Q = size(Large,3);
ii = ii + 1;
end

Réponse acceptée

Matt J
Matt J le 28 Mar 2021
LargeArray = LargeArray(:,:, any(LargeArray,[1,2]));
  1 commentaire
N/A
N/A le 28 Mar 2021
Thank you. Elegant. Short and sweet.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange

Tags

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by