Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of ProcVisDemo by
TP1Ord.h
00001 #ifndef TP1Ord_h 00002 #define TP1Ord_h 00003 00004 class TP1Ord{ 00005 public: 00006 float y; //ausgangswert 00007 private: 00008 float _alpha, _beta; //Koeffizient für fg 00009 public: 00010 TP1Ord(); 00011 00012 //einen Abtastschritt des Filters rechnen 00013 //es entsteht neues y 00014 void CalcOneStep(float aX); 00015 00016 00017 //fg(Zeitkonstante des Filters setzen 00018 //aAlpha 0...1 00019 void SetAlpha(float aAlpha); 00020 00021 }; 00022 00023 #endif
Generated on Sat Jul 30 2022 21:10:34 by
