Filters 1.0
LPF, HPF, BPF, BSF, SRL
Loading...
Searching...
No Matches
lpf_1.h File Reference

First-order low-pass filter. More...

Include dependency graph for lpf_1.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  filter::low_pass::LPF_1< T >
 First-order low-pass filter. More...

Namespaces

namespace  filter
 Contains digital signal filtering algorithms.
namespace  filter::low_pass
namespace  low_pass
 Contains low-pass filter implementations.

Detailed Description

First-order low-pass filter.

This file defines the filter::low_pass::LPF_1 class, which implements a first-order low-pass filter for attenuating high-frequency components of an input signal.

The filter is parameterized by its cutoff frequency and sampling time. The implementation maintains the previous output value as its internal state.

The class is templated to support different numeric types such as float and double.

Template Parameters
TNumeric data type used for the filter calculations.
Author
Abhinay Kumar
Version
1.0.0

Definition in file lpf_1.h.