annotate src/fftsg.h @ 144:7fbca00c2c05

removed floatArray and intArray from Java SWIG bindings
author Jamie Bullock <jamie@jamiebullock.com>
date Tue, 08 Jan 2013 14:32:45 +0000
parents 67f6b6e63d45
children
rev   line source
jamie@140 1 /* FFT functions */
jamie@140 2 void cdft(int n, int isgn, double *a, int *ip, double *w);
jamie@140 3 void rdft(int n, int isgn, double *a, int *ip, double *w);
jamie@140 4 void ddct(int n, int isgn, double *a, int *ip, double *w);
jamie@140 5 void ddst(int n, int isgn, double *a, int *ip, double *w);
jamie@140 6 void dfct(int n, double *a, double *t, int *ip, double *w);
jamie@140 7 void dfst(int n, double *a, double *t, int *ip, double *w);
jamie@140 8
jamie@140 9 /* Auxiliary functions */
jamie@140 10 void makewt(int nw, int *ip, double *w);
jamie@140 11 void bitrv2(int n, int *ip, double *a);
jamie@140 12 void bitrv2conj(int n, int *ip, double *a);
jamie@140 13 void cftfsub(int n, double *a, double *w);
jamie@140 14 void cftbsub(int n, double *a, double *w);
jamie@140 15 void makect(int nc, int *ip, double *c);
jamie@140 16 void rftfsub(int n, double *a, int nc, double *c);
jamie@140 17 void rftbsub(int n, double *a, int nc, double *c);
jamie@140 18 void dctsub(int n, double *a, int nc, double *c);
jamie@140 19 void dstsub(int n, double *a, int nc, double *c);
jamie@140 20 void cft1st(int n, double *a, double *w);
jamie@140 21 void cftmdl(int n, int l, double *a, double *w);