annotate src/CARFAC_common.h @ 496:5a5fc3a6051b carfac_cpp

* SUGGESTED re-factor of the FIR_coeffs calls (old code remains in commented out form for easy comparison). * Minor changes to CARFAC and IHC corresponding to MATLAB refactoring
author Ulf.Hammarqvist@gmail.com
date Mon, 09 Apr 2012 09:43:02 +0000
parents 24828350536a
children
rev   line source
Ulf@484 1 #ifndef CARFAC_COMMON_TYPEDEFS_H_
Ulf@484 2 #define CARFAC_COMMON_TYPEDEFS_H_
Ulf@484 3
Ulf@484 4 #include <vector>
Ulf@484 5
Ulf@484 6 typedef std::vector<float> FloatArray;
Ulf@494 7 typedef std::vector<FloatArray> FloatMatrix;
Ulf@484 8 const double kPi = 3.1415926;
Ulf@484 9
Ulf@484 10 #endif /* CARFAC_COMMON_TYPEDEFS_H_ */