
>> This is a little bit advanced topic, In this lecture we will learn about plotting in MATLAB. It is very easy. For plotting we just use simple plot function 'plot(x,y)'. Where x the range of values for which the function is to be plotted and y is the function. Example:
x = [0:0.1:52];
y...