<< 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

prostaglandin and fever
Maha Reply
Discuss the differences between taste and flavor, including how other sensory inputs contribute to our  perception of flavor.
John Reply
taste refers to your understanding of the flavor . while flavor one The other hand is refers to sort of just a blend things.
Faith
While taste primarily relies on our taste buds, flavor involves a complex interplay between taste and aroma
Kamara
which drugs can we use for ulcers
Ummi Reply
omeprazole
Kamara
what
Renee
what is this
Renee
is a drug
Kamara
of anti-ulcer
Kamara
Omeprazole Cimetidine / Tagament For the complicated once ulcer - kit
Patrick
what is the function of lymphatic system
Nency Reply
Not really sure
Eli
to drain extracellular fluid all over the body.
asegid
The lymphatic system plays several crucial roles in the human body, functioning as a key component of the immune system and contributing to the maintenance of fluid balance. Its main functions include: 1. Immune Response: The lymphatic system produces and transports lymphocytes, which are a type of
asegid
to transport fluids fats proteins and lymphocytes to the blood stream as lymph
Adama
what is anatomy
Oyindarmola Reply
Anatomy is the identification and description of the structures of living things
Kamara
what's the difference between anatomy and physiology
Oyerinde Reply
Anatomy is the study of the structure of the body, while physiology is the study of the function of the body. Anatomy looks at the body's organs and systems, while physiology looks at how those organs and systems work together to keep the body functioning.
AI-Robot
what is enzymes all about?
Mohammed Reply
Enzymes are proteins that help speed up chemical reactions in our bodies. Enzymes are essential for digestion, liver function and much more. Too much or too little of a certain enzyme can cause health problems
Kamara
yes
Prince
how does the stomach protect itself from the damaging effects of HCl
Wulku Reply
little girl okay how does the stomach protect itself from the damaging effect of HCL
Wulku
it is because of the enzyme that the stomach produce that help the stomach from the damaging effect of HCL
Kamara
function of digestive system
Ali Reply
function of digestive
Ali
the diagram of the lungs
Adaeze Reply
what is the normal body temperature
Diya Reply
37 degrees selcius
Xolo
37°c
Stephanie
please why 37 degree selcius normal temperature
Mark
36.5
Simon
37°c
Iyogho
the normal temperature is 37°c or 98.6 °Fahrenheit is important for maintaining the homeostasis in the body the body regular this temperature through the process called thermoregulation which involves brain skin muscle and other organ working together to maintain stable internal temperature
Stephanie
37A c
Wulku
what is anaemia
Diya Reply
anaemia is the decrease in RBC count hemoglobin count and PVC count
Eniola
what is the pH of the vagina
Diya Reply
how does Lysin attack pathogens
Diya
acid
Mary
I information on anatomy position and digestive system and there enzyme
Elisha Reply
anatomy of the female external genitalia
Muhammad Reply
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