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.cpp
00001 #include "TP1Ord.h" 00002 00003 TP1Ord :: TP1Ord() 00004 { 00005 //sinnvolle fg setzen 00006 SetAlpha(0.1); 00007 00008 } 00009 void TP1Ord ::CalcOneStep(float aX) 00010 { 00011 y=aX*_alpha+y*_beta; 00012 00013 } 00014 void TP1Ord :: SetAlpha(float aAlpha) 00015 { 00016 _alpha=aAlpha; 00017 _beta=(1.0-aAlpha); 00018 }
Generated on Sat Jul 30 2022 21:10:34 by
