00001 #include <stdio.h>
00002 #include <stdlib.h>
00003 #include <string.h>
00004 #include <complex.h>
00005 #include <math.h>
00006 #include "ctypes.h"
00007 #include "cblas.h"
00008
00009 #ifdef FLOAT
00010 #define TYPE FLOAT
00011 #include "levinson_code_C99.h"
00012 #undef TYPE
00013 #endif
00014
00015 #ifdef DOUBLE
00016 #define TYPE DOUBLE
00017 #include "levinson_code_C99.h"
00018 #undef TYPE
00019 #endif
00020
00021 #ifdef COMPLEXFLOAT
00022 #define TYPE COMPLEXFLOAT
00023 #include "levinson_code_C99.h"
00024 #undef TYPE
00025 #endif
00026
00027 #ifdef COMPLEXDOUBLE
00028 #define TYPE COMPLEXDOUBLE
00029 #include "levinson_code_C99.h"
00030 #undef TYPE
00031 #endif