Mercurial > hg > aim92
diff model/integrate.h @ 0:5242703e91d3 tip
Initial checkin for AIM92 aimR8.2 (last updated May 1997).
author | tomwalters |
---|---|
date | Fri, 20 May 2011 15:19:45 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/model/integrate.h Fri May 20 15:19:45 2011 +0100 @@ -0,0 +1,23 @@ +/* + integrate.h + ========= + + interface to some integrators and time samplers + + + +*/ + +#define LowpassDataTypeSource( _source, _stages, _channels, _upward, _downward, _igain ) \ + lowpassDataTypeSource( _source, _stages, _channels, _upward, _downward, _igain ) + +#define BlockSampleSource( _source, _spacing, _channels ) \ + blockSampleSource( _source, _spacing, _channels ) + +#define DownSampleSource( _source, _spacing, _channels ) \ + downSampleSource( _source, _spacing, _channels ) + + +extern Source lowpassDataTypeSource() ; +extern Source blockSampleSource() ; +extern Source downSampleSource() ;