Effacer les filtres
Effacer les filtres

How to delete or exclude an entire matrix if it contains all zeros

3 vues (au cours des 30 derniers jours)
Caitlin
Caitlin le 26 Jan 2024
Commenté : Image Analyst le 3 Fév 2024
I'm reading a large data set where sometimes there is a matrix of all zeros in all rows and columns. How do I either delete the entire matrix of zeros after it has been read, or exclude MATLAB from saving it in the first place?

Réponse acceptée

William Rose
William Rose le 27 Jan 2024
@Caitlin, you'll have to be more specific about how you are reading in the data in order to get a useful answer.
X=zeros(10,10);
whos % show variables in the workspace
Name Size Bytes Class Attributes X 10x10 800 double cmdout 1x33 66 char
You can delete variable X with
clear X
whos
Name Size Bytes Class Attributes cmdout 1x33 66 char
The output from whos shows that X is gone now.
  4 commentaires
William Rose
William Rose le 3 Fév 2024
@Caitlin, you're welcome.
Image Analyst
Image Analyst le 3 Fév 2024
If this Answer solves your original question, then could you please click the "Accept this answer" link to award the answerer with "reputation points" for their efforts in helping you? They'd appreciate it. Thanks in advance. 🙂 Note: you can only accept one answer (so pick the best one) but you can click the "Vote" icon for as many Answers as you want. Voting for an answer will also award reputation points.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by