
ezplot
ezplot is an easy to use function plotter. The
limits of the plot will be automatically set by the MATLAB when you run the command.
>> ezplot('sin(t)')
You can set the limits of the
function;
ezplot(‘function’,[lower_limit
upper_limit]).
The command plots the function
between the limits specified.
>> ezplot('sin(t)',[0
4*pi])
Ezplot can be used to plot curve
between two functions.
ezplot(‘function1’,’function2’,
[lower_limit...