Changeset 16119 for trunk/Ohana/src/opihi/include/data.h
- Timestamp:
- Jan 17, 2008, 1:21:51 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/include/data.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/include/data.h
r16117 r16119 73 73 int PrintQueue (Queue *queue); 74 74 75 /* in sort.c */76 void sort (double *value, int N);77 void fsort (float *value, int N);78 void sortpair (double *value1, double *value2, int N);79 void fsortpair (float *X, float *Y, int N);80 void sortthree (float *X, float *Y, float *Z, int N);81 void sort_lists (float *X, float *Y, int *S, int N);82 void dsort_lists (double *X, double *Y, int *S, int N);83 void isort_pair (int *X, int *Y, int N);84 85 75 /* in fft.c */ 86 76 void fft1D (float *dataRe, float *dataIm, int N, int Nbit, int forward); … … 88 78 int IsBinary (int N, int *Nbit); 89 79 90 /* in gaussj.c */91 int gaussj (double **a, int n, double **b, int m);92 int fgaussj (float **a, int n, float **b, int m);80 /* in spline.c */ 81 void spline_construct (float *x, float *y, int N, float *y2); 82 float spline_apply (float *x, float *y, float *y2, int N, float X); 93 83 94 84 /* in svdcmp.c */ 95 85 int svdcmp (float *a, float *w, float *v, int Nx, int Ny); 96 97 /* in spline.c */98 void spline (float *x, float *y, int N, float *y2);99 float splint (float *x, float *y, float *y2, int N, float X);100 86 101 87 /* mrqmin.c */ … … 139 125 void mrq2dfree (int Npar); 140 126 141 /* powell.c */142 void powell (float *p, int Npar, float (func)() );143 144 127 /* gaussian.c */ 145 128 double gaussian (double x, double mean, double sigma);
Note:
See TracChangeset
for help on using the changeset viewer.
