User:GabrielaV: Difference between revisions

From Class Wiki
Jump to navigation Jump to search
No edit summary
Harrde (talk | contribs)
 
(39 intermediate revisions by 28 users not shown)
Line 1: Line 1:
[
== Welcome to Gabriela's Wiki page ==
 
==Introduction==
 
Do you want to know how to contact me or find out some interesting
things about me?
[[http://mask.wwc.edu/2005-2006/person.html?PersonId=20051034]]
 
==Signals & Systems==
 
====Example====
 
Find the first two orthonormal polynomials on the interval [-1,1]
 
1. What is orthonormal?
[http://cubex.wwc.edu/~frohro/wiki/index.php/

Latest revision as of 14:49, 11 November 2007

Welcome to Gabriela's Wiki page

Introduction

Do you want to know how to contact me or find out some interesting things about me? [[1]]

Signals & Systems

Example

Find the first two orthonormal polynomials on the interval [-1,1]

1. What is orthonormal? [2]

2. What is orthogonal? [3]

3. What is a polynomial? [4]

        a
        bt+c

4. Now we can find the values for the unknown variables.

<a|a>=11aadt=1
a=12


<bt+c|a>=11a(bt+c)dt=0
c=0
<bt+c|bt+c>=11(bt+c)2dt=1
a=32


5. Now that we know what the first two orthonormal polynomials!

Fourier Transform

As previously discussed, Fourier series is an expansion of a periodic function therefore we can not use it to transform a non-periodic funciton from time to the frequency domain. Fortunately the Fourier transform allows for the transformation to be done on a non-periodic function. The Fourier transform allows to change a function from the time domain to frequency domain or the inverse fourier transform from frequency domain to time domain.


In order to understand the relationship between a non-periodic function and it's counterpart we must go back to Fourier series. Remember the complex exponential signal? [5]

x(t)=x(t+T)=k=αkej2πktT

where

αk=1/TT2T2x(t)ej2πktTdt

If we let

T

The summation becomes integration, the harmoinic frequency becomes a continuous frequency, and the incremental spacing becomes a differential separation.

k=
kTf
1/Tdf

The result is

limT=[x(u)ej2πfudu]ej2πftdf

The term in the brackets is the Fourier transfrom of x(t)

[x(t)]=X(f)

Inverse Fourier transform

x(t)=1[X(f)]

How a CD Player Works

The first step on how a CD player works is that it takes data from the cd that is mathmatically represented by n=x(nt)δ(tnT) The data then goes through the Digital to Analog Converter and it is convolved with p(t) ( See figure below)

File:BarnsaDA.jpgThe result is n=x(nt)p(tnT)

As you can see in the Frequency domain the final result does not appear to look like the original signal. Therefore we pass P(f)1Tm=X(fmT) through a low pass filter to knock out the high frequencies.

2x Oversampling(Interperolating FIR filter)

The benefit of using oversampling is that this allows for more samples to be taken.

We have k=x(nT)δ(tnT) in the time domain and we convolve it with m=MMh(mT2)δ(tmT2) File:2x01.jpg which equals k=x(nT)h(mT2)δ(tnTmT2) File:2x02.jpg If we let (l2)=(n+(m2)) therefore, n=(lm2) which makes y^(t)=l=(m=MMx(lm2T)h(mT2))δ(tlT2)



FIR filter

FIR stands for finite impulse response and it is one of two digital signal filters used. The FIR has no feedback so eventually it will have new data and the old one will be thrown away. h(mT)=TffH^(f)ej2πfmtdf is the coefficient that are sent out of the D/A converter. H(f) is the frequency response which mathmatically is H(f)=m=MMh(mT)ej2πfmT

FIR Application

Design an FIR low pass filter to pass between 14T<f<14T and reject the rest. Hhat=1{1,|f|14T0,else

h(mT)=T14T14T1ej2πfmtdf=Tej2π14TmTej2π14TmTj2πmT
=(12)sin(πm2)(πm2)

The actual frequency response is m=MMh(mT)ej2πfmT=m=MMsin(πm2)πmej2πfmT

[6] shows the example in Matlab

Adaptive Filter

An Adaptive Fitler is useful when filtering needs to be done and the transfer function of the noise signal is not known. The adaptive filter uses feedback to filter out the noise signal. The objective is to drive the error to zero. File:Afilter.jpg

Adaptive Filter Application

A pilot and a co-pilot are trying to communicate, but there is a problem because the microphone picks up the engine noise. What to do? Use an adaptive filter to eliminate the unwanted noise. We need two microphones.

  • engine noise+voice ( unknown transfer function)
  • engine noise ( microphone by the engine)

both signals will pass through a low pass filter and then through a Analog to Digital converter.

r(n)=s(n)+ nf(n) engine noise+voice
x(n) engine noise

Following the adaptive filter block diagram x(n) will go to FIR hn(k) and the coefficient adjust.

-r(n) and y(n) will both go to the summation.

e(n) will then go to the co-pilot's earphone and the coefficient adjust until e(n) is zero.

[7]