Tipe Stairs

Posted by the evolution | Posted in

Grafik dengan strairs di dalamnya dengan bertingkat dari hasil grafiknya, tambahan perintah stairs setelah perintah plot..



Listing M-file:
% Definisi fungsi:
x = 0:0.5:20;
y = 2*x.^2 + 5*x + 2;
z = sqrt(4*x + 2);

subplot(2,1,1)
stairs(x,y,'r')     % gambar stairs untuk x & y
grid on;            % hidupkan mode grid
xlabel('Nilai x'), ylabel('Nilai y')
legend('x thd y')

subplot(2,1,2)
stairs(x,z,'b')     % gambar stairs untuk x & z
grid on;            % hidupkan mode grid
xlabel('Nilai x'), ylabel('Nilai z')
legend('x thd z')




Comments (0)

Posting Komentar