view 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
line wrap: on
line source
#ifndef CARFAC_COMMON_TYPEDEFS_H_
#define CARFAC_COMMON_TYPEDEFS_H_

#include <vector>

typedef std::vector<float> FloatArray;
typedef std::vector<FloatArray> FloatMatrix;
const double kPi = 3.1415926;

#endif /* CARFAC_COMMON_TYPEDEFS_H_ */