Berikut merupakan contoh -contoh script membuat sinyal sinus, segitiga, kotak dan aplikasinya terhadao grafik dengan menggunakan matlab.
%PROGRAM SINYAL SINUS
x = 0:0.1:1;
y = sin(x*1*pi*2)*2;
subplot(2,2,1);plot(x,y,'LineWidth',2)
title('SINYAL SINUS');
grid on;
%PROGRAM SINYAL SEGITIGA
x = 0:1:4;
y=[0 3 0 3 0];
subplot(2,2,2);plot(x,y,'LineWidth',2);
grid on
title('SINYAL SEGITIGA');
%PROGRAM GRAFIK y =
x=0:0.01:3;
y=x.^2;
subplot(2,2,3);plot(x,y,'LineWidth',2);
title('GRAFIK y=x^2');
grid on;
%PROGRAM SINYAL KOTAK
x=[0 2 2 2 0 0 0];
subplot(2,2,4);stairs(x,'LineWidth',2);
axis([0 10 0 3.5]);
title('SINYAL KOTAK');
grid on
%PROGRAM KURS MATA UANG
x = [20 21 22 23 24 25 26 27];
y = [12659 12557 12451 12444 12465
12488 12517 12493];
plot(x,y,'--rs','LineWidth',2,...
'MarkerEdgeColor','k',...
'MarkerFaceColor','g',...
'MarkerSize',10);
xlabel('Tanggal');
ylabel('Rupiah / US Dollar');
title('KURS IDR/USD 20-27 Januari
2015');
grid on
min_y = min(y)
max_y = max(y)
0 komentar:
Posting Komentar