13 lines
154 B
C
13 lines
154 B
C
|
|
#ifndef __LOWPASS_FILTER_H
|
||
|
|
#define __LOWPASS_FILTER_H
|
||
|
|
|
||
|
|
|
||
|
|
float Lowpassfilter(float Tf, float x);
|
||
|
|
float Lowpassfilter_sim(float x);
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|