Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
fft.hh
1//
2// YASE FFT Module Header
3//
4// Copyright (C) 2022 Eric Klavins
5// This file is part of YASE
6//
7// YASE is free software: you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the Free Software
9// Foundation, either version 3 of the License, or (at your option) any later
10// version.
11//
12// YASE is distributed in the hope that it will be useful, but WITHOUT ANY
13// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15// details.
16//
17// You should have received a copy of the GNU General Public License along
18// with YASE. If not, see <https://www.gnu.org/licenses/>.
19//
20
21#ifndef YASE_FFT_H
22#define YASE_FFT_H
23
24#include "yase.hh"
25#include <fftw3.h>
26
27namespace yase {
28
30
38 class FFT : public Module {
39
40 public:
41
42 FFT(int size);
43 ~FFT();
44 void init();
45 void update();
46 void ascii();
47 void html();
48 std::string json();
49
50 fftw_complex * get();
51
52 private:
53
54 double * in;
55 fftw_complex *out;
56 fftw_plan plan;
57 int size, n;
58 int signal, ready;
59
60 };
61
62}
63
64#endif
Compute an Fast Fourier Transform.
Definition fft.hh:38
void init()
Definition fft.cc:44
void html()
Print a nice plot of the FFT to stdout that can be viewed with a web browser.
Definition fft.cc:107
fftw_complex * get()
Definition fft.cc:64
void ascii()
Print the FFT data to stdout.
Definition fft.cc:70
std::string json()
Print the FFT data as a json object to stdout.
Definition fft.cc:83
void update()
Definition fft.cc:46
An abstract base class for modules.
Definition module.hh:39
Definition additive_saw.cc:24