00001 // $Header: /home/cvsuser/cvsroot/JSOC/proj/globalhs/libs/dtgf/multi_burg_C99.h,v 1.1 2013/04/28 07:46:58 tplarson Exp $ 00002 00003 #ifndef MULTI_BURG_C99_H_DEF 00004 #define MULTI_BURG_C99_H_DEF 00005 00006 int smulti_burg( int n, int *m, float **x, int order, float *a, float *E); 00007 int dmulti_burg( int n, int *m, double **x, int order, double *a, double *E); 00008 int cmulti_burg( int n, int *m, _Complex float **x, int order, _Complex float *a, float *E); 00009 int zmulti_burg( int n, int *m, _Complex double **x, int order, _Complex double *a, double *E); 00010 00011 #endif 00012