If it wasn't clear my question is how to make the y-axis disapper and how to plot that point (which is a number between 'a' and 'b')
How to plot one point in one axis
11 次查看(过去 30 天)
显示 更早的评论
I am trying to create a plot where I have only the x-axis. With
xlim ([a b])
I can specifiy the length of the axis. I now want to plot a number in only that axis. How could I do this?
采纳的回答
Abdolkarim Mohammadi
2020-9-13
编辑:Abdolkarim Mohammadi
2020-9-13
You should turn off the visibility of the vertical axis. For example:
scatter (1,1);
ax = gca;
ax.YAxis.Visible = 'off';
xlim ([0,3]);
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Scatter Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!