mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-06 23:13:43 +00:00
CSV export + DFT math operation
This commit is contained in:
parent
79a990af47
commit
6e55eb02dd
27 changed files with 935 additions and 52 deletions
|
|
@ -25,7 +25,8 @@ public:
|
|||
|
||||
WindowFunction(Type type = Type::Hamming);
|
||||
|
||||
void apply(std::vector<std::complex<double>>& data);
|
||||
void apply(std::vector<std::complex<double>>& data) const;
|
||||
void reverse(std::vector<std::complex<double>>& data) const;
|
||||
|
||||
QWidget *createEditor();
|
||||
|
||||
|
|
@ -39,7 +40,7 @@ signals:
|
|||
void changed();
|
||||
|
||||
private:
|
||||
double getFactor(unsigned int n, unsigned int N);
|
||||
double getFactor(unsigned int n, unsigned int N) const;
|
||||
Type type;
|
||||
// parameters for the different types. Not all windows use one and most only one.
|
||||
// But keeping all parameters for all windows allows switching between window types
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue