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,
mysticxhoboJust use hold on
to plot them in succession on the same axes:
figure;
hold on;
ezplot('x^3');
ezplot('x^5');
ezplot('x^7');
精彩评论