Mercurial > hg > aimc
annotate src/CARFAC_common.h @ 494:24828350536a carfac_cpp
Fixed the ERB_Hz default parameter bug also in c++
Introduced FloatMatrix to build on the concept of FloatArray typedef
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Sun, 08 Apr 2012 19:40:13 +0000 |
parents | 715fc47a965e |
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_ */ |