<< Chapter < Page Chapter >> Page >

The impulse response of infinite-length lti systems

Systems are mathematical transformations that take input signals and map them to output signals:
Image
The system $H$ takes an input $x$ and produces an output $y$.
Recall that linear systems can be expressed as matrix multiplications, the output $y$ being the product of the infinitely long matrix $H$ and the input vector $x$: $x=Hx$. Recall also that if a linear system is also time-invariant, the matrix $H$ has a special "Toeplitz" structure: each column/row is simply a shifted version of any other column/row:
Image
The 0th column of the $H$ matrix for an LTI system has a special interpretation. If we multiply the $H$ matrix by a delta function, then the result will simply be that 0th column:
Image
Note how when the $H$ matrix is multiplied by it, the delta function "selects" the 0th column.
We call the result of this multiplication, i.e. the multiplication of the $H$ matrix by delta (impulse) function, the impulse response of the system. It is usually denoted $h[n]$, or if referring to it simple as a vector, as $h$. The impulse response $h[n]$ is simply the output of a system when the input is $\delta[n]$. Using the matrix notation from above, $h$ is the 0th column of the system matrix $H$.

Because the impulse response is simply a column (specifically, the 0th column) of the system matrix $H$, then if $H$ is an LTI system, the impulse response completely characterizes the system. It tells us absolutely everything we need to know about the system! Why is this? Because we can construct the entire system matrix $H$ by simply shifting the impulse response accordingly. The value of the matrix at row $n$ and column $m$ is simply $h[n-m]$.

As a result, we can also express the system input-output matrix multiplication in terms of the impulse response. If we have that $[{\bf H}]_{n,m}$ is the value of the $H$ matrix at row $n$ and column $m$, then the matrix multiplication $y[n]=Hx=\sum_\limits_{m=-\infty}^{\infty}[{\bf H}]_{n,m}x[m]$. From above we have the matrix values expressed in terms of the impulse response; subbing this in we see the output is a sum involving the impulse response and the input: $y[n]=Hx=\sum_\limits_{m=-\infty}^{\infty}h[n-m]x[m]$.

Impulse response of the scaling system

Let's find the impulse response of a simple scaling system: $y[n]=H\{x[n]\})=2x[n]$ To find the impulse response $h[n]$, simply calculate the output when the input is a delta function: $h[n]=H\{\delta[n]\})=2\delta[n]$

Image
If we would like to know what the system matrix $H$ is, we use the formula $[{\bf H}]_{n,m} = h[n-m]= 2\delta[n-m]$. Below is a pictorial representation of that matrix:
Image

Impulse response of the shift system

Now let's try finding the impulse response of a simple time-shifting system: $y[n]=H\{x[n]\}=x[n-2]$ Once again, find the impulse response by giving a delta function as the input:$h[n]=H\{\delta[n]\}=\delta[n-2]$

Image
The system matrix $H$ can be found, as before, as $[{\bf H}]_{n,m} = h[n-m]= \delta[n-m-2]$
Image

Impulse response of a moving average system

Consider now a simple moving average system: $y[n]~=~ {\cal H}\{ x[n] \} ~=~ \frac{1}{2}\left( x[n]+x[n-1]\right)$For this system, we find that the impulse response is: $h[n]~=~ {\cal H}\{ \delta[n] \} ~=~ \frac{1}{2}\left( \delta[n]+\delta[n-1]\right)$

Image
The system matrix is found to be $[{\bf H}]_{n,m} = h[n-m]= \frac{1}{2}\left( \delta[n-m]+\delta[n-m-1]\right)$
Image

Impulse response of the recursive average system

A recursive moving average system has the following input-output relationship: $y[n] ~=~ {\cal H}\{ x[n]\} ~=~ x[n] + \alpha\, y[n-1]$. To find the impulse response of this system, we first let $x[n]=\delta[n]$ and find the output: $h[n]={\cal H}\{ x[n] \}+\alpha\, h[n-1]$ A bit more work is required if we would like a non-recursively defined impulse response. Assuming that the system $H$ is initially at rest (it has no output in the absence of an input), then we can find the output by computing several values of $h[n]$: $h[-1]=0$ $h[0]=\delta[0]+\alpha h[-1]=1+\alpha \cdot 0=1$ $h[1]=\delta[1]+\alpha h[0]=0+\alpha\cdot 1=\alpha$ $h[2]=\delta[2]+\alpha h[1]=0+\alpha\cdot \alpha=\alpha^2$ Having discerned a pattern we have that $h[n]=\alpha^n u[n]$ (this may be more rigorously proven by induction, if desired):

Image
Image
A pictorial representation of the recursive average system.

The impulse response of finite-length lti systems

For a finite-length LTI system, just as with infinite length systems, each rows/columns of its system matrices is a shifted version of another row/column. Thus, the system matrices for finite length systems are also of a Toeplitz structure. However, for finite-length systems not only are the rows/columns shifted, they are circularly shifted; the values in the rows/columns "wrap around" when shifted across the boundary of the matrix.

As a result, the entire system matrix can be expressed in terms of the 0th column of the matrix, which (as with infinite length systems) is given the mathematical expression $h[n]$ and is named the impulse response. For a length $N$ LTI system, the formula to determine the value of the matrix at a particular row $n$ and column $m$ is $[{\bf H}]_{n,m} ~=~ h[(n-m)_N]$. Note how this is nearly identical to the infinite length formula, except for the modulo-$N$ operator.

Image
A pictorial representation of the impulse response and system matrix of a finite-length LTI system.
As with infinite-length systems, being able to express the entire system matrix in terms of the impulse response means that the system's input-output matrix multiplication relationship can be expressed as a sum involving the input and impulse response: $y[n]=Hx=\sum_{m=0}^{N-1} \: h[(n-m)_N]\, x[m]$

Impulse response length of lti systems

For LTI systems, it is often of interest whether its impulse response is of infinite length (i.e., infinite nonzero support) or finite length. Such as distinction is typically made only for infinite-length systems (as the impulse response of finite-length systems is obviously always finite-length!). If a system has an impulse response of infinite length, it is called an infinite impulse response (IIR) system; its impulse response is of finite length, it is called a finite impulse response (FIR) system.
Image
A recursive average system ($y[n]=x[n]+\alpha y[n-1]$) is an example of an IIR system.
Image
A moving average system ($y[n]=\frac{1}{2}(x[n]+x[n-1])$) is an example of an FIR system.
Examples of IIR and FIR systems.

Questions & Answers

I'm interested in biological psychology and cognitive psychology
Tanya Reply
what does preconceived mean
sammie Reply
physiological Psychology
Nwosu Reply
How can I develope my cognitive domain
Amanyire Reply
why is communication effective
Dakolo Reply
Communication is effective because it allows individuals to share ideas, thoughts, and information with others.
effective communication can lead to improved outcomes in various settings, including personal relationships, business environments, and educational settings. By communicating effectively, individuals can negotiate effectively, solve problems collaboratively, and work towards common goals.
it starts up serve and return practice/assessments.it helps find voice talking therapy also assessments through relaxed conversation.
miss
Every time someone flushes a toilet in the apartment building, the person begins to jumb back automatically after hearing the flush, before the water temperature changes. Identify the types of learning, if it is classical conditioning identify the NS, UCS, CS and CR. If it is operant conditioning, identify the type of consequence positive reinforcement, negative reinforcement or punishment
Wekolamo Reply
please i need answer
Wekolamo
because it helps many people around the world to understand how to interact with other people and understand them well, for example at work (job).
Manix Reply
Agreed 👍 There are many parts of our brains and behaviors, we really need to get to know. Blessings for everyone and happy Sunday!
ARC
A child is a member of community not society elucidate ?
JESSY Reply
Isn't practices worldwide, be it psychology, be it science. isn't much just a false belief of control over something the mind cannot truly comprehend?
Simon Reply
compare and contrast skinner's perspective on personality development on freud
namakula Reply
Skinner skipped the whole unconscious phenomenon and rather emphasized on classical conditioning
war
explain how nature and nurture affect the development and later the productivity of an individual.
Amesalu Reply
nature is an hereditary factor while nurture is an environmental factor which constitute an individual personality. so if an individual's parent has a deviant behavior and was also brought up in an deviant environment, observation of the behavior and the inborn trait we make the individual deviant.
Samuel
I am taking this course because I am hoping that I could somehow learn more about my chosen field of interest and due to the fact that being a PsyD really ignites my passion as an individual the more I hope to learn about developing and literally explore the complexity of my critical thinking skills
Zyryn Reply
good👍
Jonathan
and having a good philosophy of the world is like a sandwich and a peanut butter 👍
Jonathan
generally amnesi how long yrs memory loss
Kelu Reply
interpersonal relationships
Abdulfatai Reply
What would be the best educational aid(s) for gifted kids/savants?
Heidi Reply
treat them normal, if they want help then give them. that will make everyone happy
Saurabh
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Discrete-time signals and systems. OpenStax CNX. Oct 07, 2015 Download for free at https://legacy.cnx.org/content/col11868/1.2
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Discrete-time signals and systems' conversation and receive update notifications?

Ask