使用 ezplot 在 MATLAB 中的同一个图形上绘制两个函数
我想使用 ezplot() 在 MATLAB 中绘制以下三个函数,但我希望这些函数位于同一张图上,以便轻松解释差异。这可能吗?如果是这样怎么办?这三个功能是:
x^3
x^5
x^7
谢谢,
神秘的xhobo
i would like to plot the following three functions in MATLAB using ezplot() but i want the functions to be on the same graph to easily interpret the differences. is this possible? if so how? the three function are:
x^3
x^5
x^7
thanks,
mysticxhobo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用
hold on
将它们连续绘制在同一轴上:Just use
hold on
to plot them in succession on the same axes: