如何在 Matlab 中呈现轴上的点
我有两个长度相同的向量,我想将第一个向量视为 X 值,将第二个向量视为 Y 值,并在图表上显示 (x,y) 点。
如何在 Matlab 中完成这个简单的事情?
谢谢!!!
I have two vectors of the same length and I'd like to treat the first as X values and the second as Y values and present (x,y) points on a graph.
How do I do this simple thing in Matlab?
Thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来这正是您所需要的 plot(x, y) 。
例如,要绘制“点”,请使用
plot(x, y, '.')
。有关要使用的标记的更多示例,请参阅随附的链接。It seems that it is just plot(x, y) what you need.
For example to plot 'dots' use
plot(x, y, '.')
. For more examples of markers to use, see the attached link.