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
ExactBlackmanWindow.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 ExactBlackmanWindow final : public Window
14 {
15 private:
16 double N;
17 public:
20
22 ExactBlackmanWindow(size_t size);
23
24 double operator[](size_t n) const override;
25 void SetSize(size_t newSize) override;
26 };
27}
#define HEPH_API
Definition HephShared.h:132
generates exact Blackman window.
Definition ExactBlackmanWindow.h:14
double operator[](size_t n) const override
void SetSize(size_t newSize) override
base class for windows.
Definition Window.h:14