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

x = 1:8; y=[2 4 6 8 10 12 14 16];

plot(x,y)

clear
x=-3:0.1:3; %inkremen=0.1 agar kurva terlihat mulus
y=x.^3;
plot(x,y)
xlabel('Sumbu X'), ylabel('Sumbu Y')
title('Kurva Y=X^3')
grid on

figure
theta=linspace(0,2*pi,500);
rho=(cos(theta.*3)).^2;
polar(theta,rho);

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);

batas_x = -10:1:10; batas_y = -10:4:10;


[X,Y] = meshgrid(batas_x,batas_y);
Z = X.^2 + Y.^2;
mesh(X,Y,Z);
surf(X,Y,Z);

x = linspace(-10,10,40); y = x;
[X,Y] = meshgrid(x,y);
R = sqrt(X^2+Y^2);
Z = sin(R)/(R+eps);
surf(X,Y,Z);

You might also like