使用 ezplot 在 MATLAB 中的同一个图形上绘制两个函数

发布于 2024-11-18 13:52:37 字数 149 浏览 3 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

因为看清所以看轻 2024-11-25 13:52:37

只需使用 hold on 将它们连续绘制在同一轴上:

figure;
hold on;
ezplot('x^3');
ezplot('x^5');
ezplot('x^7');

Just use hold on to plot them in succession on the same axes:

figure;
hold on;
ezplot('x^3');
ezplot('x^5');
ezplot('x^7');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文