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

2 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

William Rose
William Rose il 27 Gen 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 Commenti
Image Analyst
Image Analyst il 3 Feb 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.

Accedi per commentare.

Più risposte (0)

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by