Filtre passe bas simple
FiltrePB.h
- Committer:
- garivetm
- Date:
- 2016-02-15
- Revision:
- 1:999ae031e7c1
- Parent:
- 0:a5c9e3376d19
- Child:
- 2:46a658fe2f70
File content as of revision 1:999ae031e7c1:
#include "mbed.h" class FiltrePB { public: FiltrePB(); FiltrePB(float fc, float Ts); float FiltreExe(float ent); private: float a,b; float tau; float vep,vsp,vs; };