File: digitalFilterNotch.h

package info (click to toggle)
groops 0%2Bgit20250907%2Bds-1
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 11,140 kB
  • sloc: cpp: 135,607; fortran: 1,603; makefile: 20
file content (45 lines) | stat: -rw-r--r-- 1,080 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/***********************************************/
/**
* @file digitalFilterNotch.h
*
* @brief Notch filter.
*
* Implemented af Christian Siemes' dissertation, page 106.
*
* @author Andreas Kvas
* @date 2016-06-21
*
*/
/***********************************************/

#ifndef __GROOPS_DIGITALFILTERNOTCH__
#define __GROOPS_DIGITALFILTERNOTCH__

// Latex documentation
#ifdef DOCSTRING_DigitalFilter
static const char *docstringDigitalFilterNotch = R"(
\subsection{Notch}
Implemented after Christian Siemes' dissertation, page 106.

\fig{!hb}{0.6}{DigitalFilter_notch}{fig:DigitalFilterNotch}{Amplitude response of a notch filter of order three with default settings.}
)";
#endif

/***********************************************/

#include "classes/digitalFilter/digitalFilter.h"

/***** CLASS ***********************************/

/** @brief Butterworth filter.
* @ingroup digitalFilterGroup
* @see DigitalFilter */
class DigitalFilterNotch : public DigitalFilterARMA
{
public:
  DigitalFilterNotch(Config &config);
};

/***********************************************/

#endif