Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 9

Perintah Mesh Meshc Meshz Surf Surfc Surfl Fill3 Contour Contour3 Help graph3d

Arti 3D mesh surface Mesh-contour plot 3D mesh with zero plane 3D shaded surface Surface-contour plot 3D surface with lighting Draw fill 3D Contour plot 3D contour plot

Contoh: >> X = [10 20 20 10 10]; >> Y = [5 5 15 15 5]; >> Z = [0 0 70 70 0]; >> plot3(X,Y,Z); grid on; >> xlabel(sumbu X); ylabel(sumbu Y); >> zlabel(sumbu Z); >> title (Contoh plot 3-D); >> axis([0 25 0 20 0 80])

>> t=0:0.1:25; >> X=sin(t); Y=cos(t); Z=0.5*t; >> plot3(X,Y,Z) >> xlabel(sumbu X); ylabel(sumbu Y); >> zlabel(sumbu Z); >> title (Helix);

x ! 1  cos t y ! 2  sin t z ! 1  cos 2t , dengan 0 e t e 2T

z ! x 2  y 2 ,5 e x e 5,5 e y e 5

z ! cos x. sin 2 y,0 e x e 4T ,0 e y e 4T

You might also like