|
previous: eigenvectors,SVD next: integration |
Plot   y = sin(4x)   for 2.2<x<4.4
Plot   z = sin(4x)cos(3y)   over 2.2<x<4.4,   1.1<y<3.5
| Mathematica: Plot[ Sin[4x], {x,2.2,4.4}];
Plot3D[ Sin[4x]Cos[3y], |
Matlab:
Create data points explicitly...
x = 2.2:0.1:4.4; z = sin(4*u) * cos(3*v) ezsurf(z, [2.2,4.4], [1.1,3.5]) |
| Maple: plot( sin(4*x), x=2.2..4.4 );
plot3d( sin(4*x)*cos(3*y), | IDL:
x = findgen(23)/10 + 2.2
  (data points at 2.2, 2.3, ...)
y = findgen(25)/10 + 1.1
  (data points at 1.1, 1.2, ...)
|