IT++ Logo

filter_design.h

Go to the documentation of this file.
00001 
00030 #ifndef FILTER_DESIGN_H
00031 #define FILTER_DESIGN_H
00032 
00033 #include <itpp/base/vec.h>
00034 
00035 
00036 namespace itpp
00037 {
00038 
00055 void polystab(const vec &a, vec &out);
00056 inline vec polystab(const vec &a) { vec temp; polystab(a, temp); return temp; }
00057 void polystab(const cvec &a, cvec &out);
00058 inline cvec polystab(const cvec &a) { cvec temp; polystab(a, temp); return temp; }
00074 void freqz(const cvec &b, const cvec& a, const int N, cvec &h, vec &w);
00075 cvec freqz(const cvec &b, const cvec& a, const int N = 512);
00076 cvec freqz(const cvec &b, const cvec& a, const vec &w);
00077 
00078 void freqz(const vec &b, const vec& a, const int N, cvec &h, vec &w);
00079 cvec freqz(const vec &b, const vec& a, const int N = 512);
00080 cvec freqz(const vec &b, const vec& a, const vec &w);
00098 void filter_design_autocorrelation(const int N, const vec &f, const vec &m, vec &R);
00099 
00100 
00119 void modified_yule_walker(const int m, const int n, const int N, const vec &R, vec &a);
00120 
00121 
00122 
00144 void arma_estimator(const int m, const int n, const vec &R, vec &b, vec &a);
00145 
00146 
00161 void yulewalk(const int N, const vec &f, const vec &m, vec &b, vec &a);
00162 
00163 
00164 } // namespace itpp
00165 
00166 #endif // #ifndef FILTER_DESIGN_H
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
SourceForge Logo

Generated on Tue Nov 23 08:45:11 2010 for IT++ by Doxygen 1.6.1