Time-domain and frequency-domain transformation-meaning of Fourier Transformation

Source: Internet
Author: User

I am so ashamed to learn "digital signal processing" for a long time. I also remembered the Fourier transformation formula and made the FFT program, but I don't know what the significance of Fourier transformation is! That's it !!

Fortunately, I understand it. Aside from the mathematical meaning, let alone some practical meanings. Fourier transform is used to convert signals from the time domain to the frequency domain. In this way, the characteristics of signals that are overlapped and invisible in the time domain can be clearly seen in the frequency domain. For example:

Figure1 is a graph of a = 0.4 * sin (4 * w * (x). figure2 is a graph of B = 1.6 * Cos (12 * w * (x. These two figures are easy to see on the timeline. But some information in the two sums, namely a + B, is invisible, as shown in figure3. However, it is obvious to do a Fourier transformation and convert it to the frequency domain, as shown in figure4. The abscissa of figure4 is frequency, and the ordinate is amplitude. It can be seen that figure3 consists of two signals, and the amplitude of the signal with a large frequency is relatively large (that is, B, because fftshift is used here, so exactly the opposite), the meaning is more obvious.

Alas, it's really hard to say. At that time, I read a lot of books related to digital signals, but I didn't understand what was going on. Why? Poor self-learning ability! In this example, we should take the precaution.

Appendix: MATLAB program


W = 2 * PI;
X =-1:0. 01:1;
A = 0.4 * sin (4 * w * (x ));
B = 1.6 * Cos (12 * w * (x ));

Subplot (2, 2, 1 );

Plot (w * X, A), title ('figure 1: A = 0.4 * sin (4 * w * (x ))');
Subplot (2, 2 );
Plot (w * X, B), title ('figure 2: B = 1.6 * Cos (12 * w * (x ))');
Subplot (2, 2, 3 );
Plot (w * X, A + B), title ('figure 3: A + B ');
C = FFT (A + B );
Subplot (2, 2, 4 );
Plot (x, fftshift (ABS (c), title ('figure 4: FFT ');

Http://www.360doc.com/content/11/0530/20/4539198_120561433.shtml

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.