Jump to content

256-fall-2008/hw3/FAQ: Difference between revisions

From CCRMA Wiki
Njb (talk | contribs)
No edit summary
 
Njb (talk | contribs)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
=== Using the FFTW3 Package for computing the FFT on CCRMA Linux machines ===
 
* TO COMPILE
== Using the FFTW3 Package for computing the FFT on CCRMA Linux machines ==
=== TO COMPILE===
* FFTW3 is already installed on the CCRMA Linux machines
* FFTW3 is already installed on the CCRMA Linux machines
* In your .cpp file: #include <fftw3.h>
* In your .cpp file: #include <fftw3.h>
* In your makefile include the library: -lfftw3
* In your makefile include the library: -lfftw3


* TO USE
===TO USE===
* For Look at page 3 of the documentation: https://people.scs.fsu.edu/~burkardt/pdf/fftw3.pdf This example can be modified for real input sequences, but not necessary
* Look at page 3 (section 2.1) of the documentation: https://people.scs.fsu.edu/~burkardt/pdf/fftw3.pdf  
* This example can be modified for real input sequences, but not necessary
 
-Nick

Latest revision as of 23:07, 20 November 2008

Using the FFTW3 Package for computing the FFT on CCRMA Linux machines

TO COMPILE

  • FFTW3 is already installed on the CCRMA Linux machines
  • In your .cpp file: #include <fftw3.h>
  • In your makefile include the library: -lfftw3

TO USE

-Nick