close all,
clear all,
clc,
%y[n] = x[n] + 1/2 x[n - 1] + 2x [n - 2] + 4x[n - 3] - x[n - 5]
y=[];
x=0:1:10;
for n=1:1:length(x)
if(n<6),
y(n)=0;
else
y(n) = x(n) + (1/2)*x(n-1) + 2*x(n-2) + 4*x(n-3) - x(n-5);
end
end
scrsz = get(0,'ScreenSize');
Dim=0;
figure('Position',[scrsz(1)+Dim, scrsz(2)+Dim,scrsz(3)-20,scrsz(4)-100]);
subplot(1,2,1);
plot(x,y);
grid on,
xlabel('--- x --->');
ylabel('y[n] = x[n] + 1/2 x[n - 1] + 2x [n - 2] + 4x[n - 3] - x[n - 5]');
title('Plot: y[n] = x[n] + 1/2 x[n - 1] + 2x [n - 2] + 4x[n - 3] - x[n - 5]','FontSize',20);
subplot(1,2,2);
impz(y);
grid on,
Comments
Leave a comment