libfftw3 만 있는 줄 알았는데 yocto에서 이상한(?) l d 이런 붙는게 있다고 해서 찾아보니
double / long / quad / single 이라는 이상한(?) 정밀도가 존재한다.
$ apt-cache search libfftw* libfftw3-double3 - Fast Fourier Transforms 계산용 라이브러리 - 이중 정밀도 libfftw3-long3 - Library for computing Fast Fourier Transforms - Long precision libfftw3-quad3 - Library for computing Fast Fourier Transforms - Quad precision libfftw3-single3 - Library for computing Fast Fourier Transforms - Single precision libfftw3-bin - Library for computing Fast Fourier Transforms - Tools libfftw3-dbg - Library for computing Fast Fourier Transforms - debug symbols libfftw3-dev - Library for computing Fast Fourier Transforms - development libfftw3-doc - Documentation for fftw version 3 libfftw3-3 - Fast Fourier Transforms 계산용 라이브러리 libfftw3-mpi-dev - MPI Library for computing Fast Fourier Transforms - development libfftw3-mpi3 - MPI Library for computing Fast Fourier Transforms libgnuradio-fft3.7.11 - gnuradio fast Fourier transform functions sndfile-tools - Collection of programs for operating on sound files |
Link to the single/long-double libraries; on Unix, -lfftw3f or -lfftw3l instead of (or in addition to) -lfftw3. (You can link to the different-precision libraries simultaneously.) Include the same <fftw3.h> header file. Replace all lowercase instances of ‘fftw_’ with ‘fftwf_’ or ‘fftwl_’ for single or long-double precision, respectively. (fftw_complex becomes fftwf_complex, fftw_execute becomes fftwf_execute, etcetera.) Uppercase names, i.e. names beginning with ‘FFTW_’, remain the same. Replace double with float or long double for subroutine parameters. |
'프로그램 사용 > fft, fftw' 카테고리의 다른 글
partial fft (0) | 2023.04.04 |
---|---|
fftw plan (0) | 2023.03.31 |
spectrogram (0) | 2023.03.29 |
fft 분석 패러미터 (0) | 2023.03.29 |
FFT 윈도우, 오버랩 (0) | 2023.03.23 |