This image was created in Matlab with the following commands:


x = -5.0:0.2:5.0;
y1 = sin(x);
y2 = exp(x);
y3 = atan(x);
y4 = cosh(x);

subplot(2,2,1), plot(x,y1,'m*'), title('Sin(x)');
subplot(2,2,2), plot(x,y2,'bo'), title('Exp(x)');
subplot(2,2,3), plot(x,y3,'g-.'), title('Arctan(x)');
subplot(2,2,4), plot(x,y4,'r'), title('Cosh(x)');


Copyright © 1996, 1997, 1998 Anu Rao
http://math.arizona.edu/~swig/documentation/matlab-intro/plots/matlab2.php
Last modified: Fri, 14 Dec 2007 15:50:52 -0700
E-mail: swig@math.arizona.edu
Valid XHTML 1.0! Valid CSS!