APLIKASI MATLAB
NAMA : ADE SANA RUHIYAT
: R.NIA ARIA RATNA NINGSIH
bentuk sinyal tiga dimensi
%File Name: graph_7.mclear,clf
x_title=-2:.2:2;
y_title=-2:.2:2;
[x,y]=meshgrid(x_title,y_title);
z=x.*exp(-x.^2-y.^2);
mesh(x,y,z)
title('3-D plot of z=x.*exp(-x.^2-y.^2)')
xlabel('x');ylabel('y');zlabel('z');
contoh pergeseran sinyal
% Program 1.5% Menentukan pergeseran sinyal x2 = x1[n - 5]
%
x1 = [1 2 3];
N1 = 0:2;
% Menghitung sinyal
x2 = [0 0 0 0 0 x1]; %x1 [n - 5]
N2 = 0:7;
%
stem (N1,x1);
hold on
stem (N2,x2,'R')
sinyal plot sinc
% Program 1.4
% Melakukan plot fungsi sinc(x) dari x = -2pi sampai dengan x = 2pi
%
x = -2*pi:0.2:2*pi
y = sinc(x);
% Melakukan plot sinyal
plot(x,y,'b')
hold on
stem(x,y,'rd:')
xlabel('waktu')
ylabel('amplitudo')
legend('kontinu','diskrik')
Tidak ada komentar:
Posting Komentar