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: can hiv results be given, concept of laser was given by, given, c program to implement impulse response in seminar projects, e ball technology ppt given, barbara given, thanks given of a seminar,

[-]
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,240 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,421 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,194 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,396 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,355 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,288 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,412 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,791 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,529 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: