HephAudio v3.0.6
A cross-platform C++ library for recording, playing, and processing audio on Windows, Android, Linux, iOS, and macOS.
Loading...
Searching...
No Matches
ParzenWindow.h
Go to the documentation of this file.
1#pragma once
2#include "HephAudioShared.h"
3#include "Window.h"
4
7namespace HephAudio
8{
13 class HEPH_API ParzenWindow final : public Window
14 {
15 private:
16 double hN;
17 double hL;
18 double qL;
19
20 public:
23
25 ParzenWindow(size_t size);
26
27 double operator[](size_t n) const override;
28 void SetSize(size_t newSize) override;
29 };
30}
#define HEPH_API
Definition HephShared.h:132
generates Parzen window.
Definition ParzenWindow.h:14
void SetSize(size_t newSize) override
double operator[](size_t n) const override
ParzenWindow(size_t size)
base class for windows.
Definition Window.h:14