Answer to Question #281593 in Electrical Engineering for ejay

Question #281593

Determine the impulse response of the following IIR system:


y[n] + y[n - 1] = x[n] - 2x * [n - 1]



1
Expert's answer
2021-12-21T23:08:02-0500
close all,
clear all,
clc,


%   IIR response impulse response
%   y[n] + y[n - 1] = x[n] - 2x * [n - 1]
%   Or  
%   y[n] =  x[n] - 2x * [n - 1] - y[n - 1]




y=[];
x=0:1:10;
y(1)=0;
for n=2:1:length(x)
    y(n) =  x(n) - 2*x(n - 1) - y(n-1);
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) - 2*x(n - 1) - y(n-1)');
title('Plot: y(n) =  x(n) - 2*x(n - 1) - y(n-1)','FontSize',20);


subplot(1,2,2);
impz(y);
grid on,





Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS