How to plot with no line
32 views (last 30 days)
Show older comments
I wish to plot a graph with no line so I could identify the gap. It would look like similar to figure below where there is a gap since there are missing data. Hope, someone can provide information by using the toolbar in the figure section in Figure Matlab.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146998/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146999/image.png)
1 Comment
Answers (1)
Azzi Abdelmalek
on 2 Feb 2015
Edited: Azzi Abdelmalek
on 2 Feb 2015
scatter(x,y)
%or
plot(x,y,'o')
4 Comments
Prabin Pandit
on 8 May 2020
Here is the code for ploting x vs.y asix with red color with no line .
plot(x,y,"r*")
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!