Tipe Stem
Posted by the evolution | Posted in
% Definisi fungsi:
x = 0:0.5:20;
y = 2*x.^2 + 5*x + 2;
z = sqrt(4*x + 2);
subplot(2,1,1)
stem(x,y,'r') % gambar stem untuk x & y
grid on; % hidupkan mode grid
xlabel('Nilai x'), ylabel('Nilai y')
legend('x thd y')
subplot(2,1,2)
stem(x,z,'b') % gambar stem untuk x & z
grid on; % hidupkan mode grid
xlabel('Nilai x'), ylabel('Nilai z')
legend('x thd z')
Comments (0)
Posting Komentar