Tipe Bar

Posted by the evolution | Posted in

Grafik gambar dengan menggunakan perintah bar setelah plot hasil data..
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)
bar(x,y,'g')        % gambar bar untuk x & y
grid on;            % hidupkan mode grid
xlabel('Nilai x'), ylabel('Nilai y')
legend('x thd y')

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




Comments (0)

Posting Komentar