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