icub-basic-demos
IIRFilt.h
Go to the documentation of this file.
1 // -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*-
2 
3 // Copyright: (C) 2006-2007 Alex Bernardino, ISR-IST
4 // Authors: Alex Bernardino
5 // CopyPolicy: Released under the terms of the GNU GPL v2.0.
6 
16 #ifndef _IIRFILT_H_
17 #define _IIRFILT_H_
18 
19 
43 void iir_filt_forward(float *in, int stepin, float *out, int stepout, int length, float *coeffs, float *i0);
44 
45 void iir_filt_backward(float *in, int stepin, float *out, int stepout, int length, float *coeffs, float *i0);
46 
47 void iir_filt_forward(float *in, float *out, int length, float *coeffs, float *i0);
48 
49 void iir_filt_backward(float *in, float *out, int length, float *coeffs, float *i0);
50 
51 void iir_filt_forward(float *in, float *out, int stepout, int length, float *coeffs, float *i0);
52 
53 void iir_filt_backward(float *in, float *out, int stepout, int length, float *coeffs, float *i0);
54 
55 void iir_filt_forward(float *in, int stepin, float *out, int length, float *coeffs, float *i0);
56 
57 void iir_filt_backward(float *in, int stepin, float *out, int length, float *coeffs, float *i0);
58 
59 
60 #endif
61 
62 
63 
void iir_filt_forward(float *in, int stepin, float *out, int stepout, int length, float *coeffs, float *i0)
Functions iir_filt_forward and iir_filt_backward do a 3 tap recursive filtering operation on floating...
Definition: IIRFilt.cpp:19