00001 // $Header: /home/cvsuser/cvsroot/JSOC/proj/globalhs/libs/dtgf/levinson_C99.h,v 1.1 2013/04/28 07:46:58 tplarson Exp $ 00002 00003 #ifndef LEVINSON_C99_H_DEF 00004 #define LEVINSON_C99_H_DEF 00005 00006 extern void slevinson( int n, float *r, float *b, float *x); 00007 extern void dlevinson( int n, double *r, double *b, double *x); 00008 extern void clevinson( int n, _Complex float *r, _Complex float *b, _Complex float *x); 00009 extern void zlevinson( int n, _Complex double *r, _Complex double *b, _Complex double *x); 00010 00011 #endif 00012