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

2 次查看(过去 30 天)
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?

采纳的回答

William Rose
William Rose 2024-1-27
@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 个评论
Image Analyst
Image Analyst 2024-2-3
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by