please dont rip this site

UK AC York CS Www-users Http ~fisher Software Mkfilter Odds Jim_miller Filter.h

#ifndef _FILTER_H
#define _FILTER_H

// Abstract base class
class FilterBase {
    public:
	virtual void iterate(Float *in, Float *out, int n) = 0;
};

struct FilterSpec {
    int order;
    Float dcGain;
    Float *ycoeffs;
};

class Filter: public FilterBase {
    public:
	Filter(int order, Float dcGain, Float *ycs);
	virtual void iterate(Float *in, Float *out, int n);

    private:
	// gain parameters
	Float dcGain, dcGainInv;
	int order;

	// State variables so we can resume later
	Float xval0, xval1, xval2, xval3, xval4,
	      xval5, xval6, xval7, xval8, xval9;

	Float yval0, yval1, yval2, yval3, yval4,
	      yval5, yval6, yval7, yval8, yval9;

	// Filtering coefficients for orders 1-10
	Float ycoeff0, ycoeff1, ycoeff2, ycoeff3, ycoeff4,
	      ycoeff5, ycoeff6, ycoeff7, ycoeff8, ycoeff9;

	// Hand-coded, speedy filters for 1st 3 orders
        static void iterate1(Filter *, Float *in, Float *out, int n);
        static void iterate2(Filter *, Float *in, Float *out, int n);
        static void iterate3(Filter *, Float *in, Float *out, int n);

	// This pointer will reference one of the above, dependin
	// on the order of the filter.
	void (*iterateFunc)(Filter *, Float *in, Float *out, int n);

};
	
#endif // _FILTER_H


file: /Techref/uk/ac/york/cs/www-users/http/~fisher/software/mkfilter/odds/jim_miller/filter.h, 1KB, , updated: 2000/4/4 11:50, local time: 2024/6/17 05:25,
TOP NEW HELP FIND: 
18.191.189.211:LOG IN

 ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.piclist.com/Techref/uk/ac/york/cs/www-users/http/~fisher/software/mkfilter/odds/jim_miller/filter.h"> uk ac york cs www-users http ~fisher software mkfilter odds jim_miller filter</A>

Did you find what you needed?

  PICList 2024 contributors:
o List host: MIT, Site host massmind.org, Top posters @none found
- Page Editors: James Newton, David Cary, and YOU!
* Roman Black of Black Robotics donates from sales of Linistep stepper controller kits.
* Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters.
* Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated!
* Contributors: Richard Seriani, Sr.
 

Welcome to www.piclist.com!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .