Wednesday, 23 October 2013

More Mathematical Functions using MATLB


MORE CURVES USING MATLAB

Similar other graphs can be plotted using MATLAB which is going to help our understanding of Mathematical Functions. Several other MATLAB codes and their plot are as :

1).
>> x = -10:0.1:10;
>> y = 1./(sin(x))+ 1./(cos(x));
>> plot(x,y)
>> 

2).
x = -2:0.1:2;
y = exp(x);

plot(x,y)



3).
x = 0:0.1:10;
y = log(x);
plot(x,y)



No comments:

Post a Comment