IMPULSE RESPONSE OF THE GIVEN SYSTEM
#1

Procedure:-
1. Rewrite the difference equation so that y[n] and its delayed samples are on the LHS
2. Create a matrix a for the coefficients of y[n] and its delayed versions
3. Create a matrix b for the coefficients of x[n] and its delayed versions
4. Generate impulse excitation signal delta [n]
5. Find the response h[n] of the filter defined by a & b coefficients , so the input impulse excitation , using filter command
6. Display the impulse response h[n].
MATLAB program for impulse response
Code:
clear
close all
clc
%SOLVE THE GIVEN DIFFERENCE EQUATION Y(N) - 0.9Y(N-1) = X(N)
% FIND THE TRANSFER FUNCTION OF THE GIVEN DIFFERENCE EQUATION  H(Z) = Y(Z)/X(Z)
% NUMERATOR POLYNOMIAL IS 'A' AND DENOMINATOR POLYNOMIAL IS 'B'
% FOR THE ABOVE EXAMPLE B = [1] AND A = [ 1 -0.9 ]
b = [1];
a = [1 -0.9];
% H(N) IS REQUIRED FOR N = -5,-4…10,20
% SO GENERATE IMPULSE SEQUENCE OF THE ABOVE LENGTH
% N - TIME INDEX
n = [-5:20];
% X IS THE IMPULSE SEQUENCE
x = [(n == 0)];
% FIND THE OUTPUT OF THE SYSTEM FOR THE IMPULSE SEQUENCE WHICH IS THE
% IMPULSE RESPONSE
%h = impz(b,a)
h = filter(b,a,x);

% PLOT THE INPUT AND THE OUTPUT

subplot(2,1,1);
stem(n,x);
xlabel('Time index n');
ylabel('Amplitude');
title('Impulse Sequence');
grid on;


subplot(2,1,2);
stem(n,h);
xlabel('Time Index n');
ylabel('Amplitude');
title('Impulse Response');
grid on;

RESULT:-IMPULSE RESPONSE OF THE GIVEN SYSTEM
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Tagged Pages: impulse response of a system pdf,
Popular Searches: to display decimal no 7 what is the input given to ic 7448, impulse response of a system pdf, abstract for expert system to prescribe the medicine for given symptoms, to design an appropriate logicgate combination for a given truth table, find impulse response of given system, given, given a semminor on topic fuzzy logic,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  To predict Exons in the given nucleotide sequence using the HMM gene tool. smart paper boy 0 1,239 10-08-2011, 02:50 PM
Last Post: smart paper boy
  To predict Open Reading Frames (ORFs) in the given nucleotide sequence using the ORF smart paper boy 0 1,418 10-08-2011, 02:49 PM
Last Post: smart paper boy
  To predict the genes in the given nucleotide sequence using the GenScan tool. smart paper boy 0 1,190 10-08-2011, 02:46 PM
Last Post: smart paper boy
  To perform multiple sequence alignment between the given sequences using Clustalw2 to smart paper boy 0 1,393 10-08-2011, 02:44 PM
Last Post: smart paper boy
  To perform global alignment between the given sequences using EMBOSS tool. smart paper boy 0 1,352 10-08-2011, 02:43 PM
Last Post: smart paper boy
  To perform local alignment between the given sequences using EMBOSS tool. smart paper boy 0 1,285 10-08-2011, 02:41 PM
Last Post: smart paper boy
  : PROGRAM TO IDENTIFY VOWELS AND CONSONANTS GIVEN AS INPUT smart paper boy 0 2,408 10-08-2011, 11:44 AM
Last Post: smart paper boy
  To write a C# program to perform encryption and decryption of the given data. smart paper boy 0 1,783 21-07-2011, 09:50 AM
Last Post: smart paper boy
  Study the manipulation of given equation into an equivalent logic circuit seminar class 0 2,523 13-05-2011, 04:07 PM
Last Post: seminar class
  Program in “LEX” to count the verb in a given line of text. seminar class 0 1,590 07-05-2011, 12:50 PM
Last Post: seminar class

Forum Jump: