Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andreafrancia/howto-fft-fortran
https://github.com/andreafrancia/howto-fft-fortran
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/andreafrancia/howto-fft-fortran
- Owner: andreafrancia
- Created: 2012-11-09T17:55:43.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-11-09T18:02:23.000Z (about 12 years ago)
- Last Synced: 2024-10-16T07:55:20.554Z (3 months ago)
- Language: FORTRAN
- Size: 102 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
How can I calculate FFT in Fortran?
-----------------------------------Download and unpack fftw from http://www.fftw.org
Install fftw:
./configure --prefix=/usr/local && make && make install
Write a program like hello.f90:
Compile and run with:
gfortran hello.f90 -lfftw3 && ./a.out
EOF