Removing zeros from workspace

HI,
I have copied and pasted data from excel, each population has different number of readings and as a result the smaller populations are filled with zeros in the remaining cells.
thefore when i do a boxplot of the workspace it includes the zeros, I was wondering if there is a way of removing the zero values and still doing the boxplot
Thanks

3 Comments

Can you show us a sample of your dataset? How do you want to remove zeros, do you want to delete rows?
I just need them to not equal zero so be just empty cells if that is possible?
Thanks

Sign in to comment.

 Accepted Answer

If you are just making boxplot, setting them to nan will work.
A = ...; % suppose A is the name of your matrix
A(A==0) = nan;
boxplot(A);

2 Comments

Thats perfect! thanks very much
Glad to help.

Sign in to comment.

More Answers (1)

Products

Community Treasure Hunt

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

Start Hunting!