how to omit zero values while plotting the graph

could anyone tell me how to omit zero values while plotting the graph.

Answers (1)

dpb
dpb on 6 Apr 2018
Edited: dpb on 6 Apr 2018
A)
yplot=y; % make a copy of the data specifically for plotting
yplot(yplot==0)=nan; % replace 0 elements with NaN
plot(x,yplot)
will return broken lines between locations which contain zero in yplot
B)
isNZ=(~y==0); % addressing logical array of nonzero elements
plot(x(isNZ),y(isNZ)) % plot only the subset
will be solid line just without those points that were zero

1 Comment

Many thanks. I was struggling with something like this but this code helped me too much

Sign in to comment.

Asked:

on 6 Apr 2018

Commented:

on 5 Aug 2021

Community Treasure Hunt

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

Start Hunting!