HW: Difference between revisions

From Class Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
*[[Signals and systems|Signals and Systems]]
*[[Signals and systems|Signals and Systems]]
==An Introduction to the Fourier Transform==
==Fourier Transform Applications==
===The "Fast" Fourier Transform===
====Cooley-Turkey Algorithm ====


Unfortunately, the Fourier Transform isn't a Transformer. If it was, you would have seen it in the movie that came out lately. [[Image:transformer_roolbar.jpg]]
Unfortunately, the Fourier Transform isn't a Transformer. If it was, you would have seen it in the movie that came out lately. [[Image:transformer_roolbar.jpg]]
Line 7: Line 9:
<math>x_{\mathrm{square}}(t) = \frac{4}{\pi} \sum_{k=1}^\infty {\sin{\left ((2k-1)2\pi ft \right )}\over(2k-1)} </math>
<math>x_{\mathrm{square}}(t) = \frac{4}{\pi} \sum_{k=1}^\infty {\sin{\left ((2k-1)2\pi ft \right )}\over(2k-1)} </math>


What is a Fast Fourier Transform? (FFT)<br>
That's alot of numbers seemingly out of the blue, at first observance. I bet your questions are:


It's an algorithm that can compute the discrete Fourier transform faster than other algorithms. In digital systems, continuous Fourier Transforms are sampled, turning them into discrete Fourier Transforms which then can be computed and manipulated using Digital Signal Processing.
<br>

=== 1. Telling me the difference between a transformer and a Fourier Transform hasn't helped me finish my assignment. What else can you tell me? ===
An intuitive brute force way of computing a Fourier Transform means rearranging the the summation so that you don't compute the transform in sequential order - you group similar elements together and simplify before combining them. This cuts down the adding and multiplying, thus cutting computation time down by about 100 times.
Wait till Friday. That's when the deadline for this assignment is, so hopefully I'll panic before then and get something done on this page in addition to the spectacular transformers picture.

<br>
One of the most popular FFT algorithms is called the Cooley-Turkey algorithm. Which I will explain on Friday
=== 2.Can you show me some really easy plug-in formulas, so I can get my homework done faster? ===
Yes. <br>
=== 3.Why would I bother getting one? I don't know what to do with it. ===
<br> Fourier Transforms are awesome! They allow continuous functions to be represented by ones and zeros, which means we can
implement functions on the computer. Fourier Transforms form the basis of signal processing. They allow us another way to transform
a math problem so it's alot easier to solve.

Revision as of 22:04, 11 October 2007

Fourier Transform Applications

The "Fast" Fourier Transform

Cooley-Turkey Algorithm

Unfortunately, the Fourier Transform isn't a Transformer. If it was, you would have seen it in the movie that came out lately. Transformer roolbar.jpg
One way to explain a Fourier Transform is to say it's a bunch of sinusoids added to create a just about any function you want. Another way to describe it is to say it's a way of representing a function in the frequency domain instead of the time domain.
For example, a square wave could be represented by:

What is a Fast Fourier Transform? (FFT)

It's an algorithm that can compute the discrete Fourier transform faster than other algorithms. In digital systems, continuous Fourier Transforms are sampled, turning them into discrete Fourier Transforms which then can be computed and manipulated using Digital Signal Processing.

An intuitive brute force way of computing a Fourier Transform means rearranging the the summation so that you don't compute the transform in sequential order - you group similar elements together and simplify before combining them. This cuts down the adding and multiplying, thus cutting computation time down by about 100 times.

One of the most popular FFT algorithms is called the Cooley-Turkey algorithm. Which I will explain on Friday