branch for cuboid
Revision 3:b23f59513a90, committed 2019-11-22
- Comitter:
- altb2
- Date:
- Fri Nov 22 16:44:35 2019 +0000
- Parent:
- 2:8706bb4e8f93
- Commit message:
- Some changes in lib
Changed in this revision
IIR_filter.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 8706bb4e8f93 -r b23f59513a90 IIR_filter.cpp --- a/IIR_filter.cpp Fri Mar 08 13:34:39 2019 +0000 +++ b/IIR_filter.cpp Fri Nov 22 16:44:35 2019 +0000 @@ -2,6 +2,7 @@ #include "mbed.h" using namespace std; + /* IIR filter implemention for the following filter types: init for: first order differentiatior: G(s) = s/(T*s + 1) @@ -13,6 +14,9 @@ */ // G(s) = s/(T*s + 1) +// default constreuctor + + IIR_filter::IIR_filter(float T, float Ts){ // filter orders