comparison branches/carfac_cpp/src/CARFAC_common.h @ 555:4de3bebec3d6

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 e63fbe19b255
children
comparison
equal deleted inserted replaced
554:d18ff10b5559 555:4de3bebec3d6
2 #define CARFAC_COMMON_TYPEDEFS_H_ 2 #define CARFAC_COMMON_TYPEDEFS_H_
3 3
4 #include <vector> 4 #include <vector>
5 5
6 typedef std::vector<float> FloatArray; 6 typedef std::vector<float> FloatArray;
7 typedef std::vector<FloatArray> FloatMatrix;
7 const double kPi = 3.1415926; 8 const double kPi = 3.1415926;
8 9
9 #endif /* CARFAC_COMMON_TYPEDEFS_H_ */ 10 #endif /* CARFAC_COMMON_TYPEDEFS_H_ */