本文介绍了使用ezplot在MATLAB的同一图形上绘制两个函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用ezplot()在MATLAB中绘制以下三个函数,但我希望这些函数位于同一图上,以轻松解释差异.这可能吗?如果是这样怎么办?这三个功能是:

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

谢谢,
mysticxhobo

thanks,
mysticxhobo

推荐答案

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

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');

这篇关于使用ezplot在MATLAB的同一图形上绘制两个函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 20:26