开发者

Plot two functions on the same graph in MATLAB using ezplot

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


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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜