1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
#include "fftpack.h"
#include "Python.h"
#include "numpy/arrayobject.h"
static PyObject *ErrorObject;
/* ----------------------------------------------------- */
static char fftpack_cfftf__doc__[] ="";
PyObject *
fftpack_cfftf(PyObject *self, PyObject *args)
{
PyObject *op1, *op2;
PyArrayObject *data;
double *wsave, *dptr;
int npts, nsave, nrepeats, i;
if(!PyArg_ParseTuple(args, "OO", &op1, &op2)) return NULL;
data = (PyArrayObject *)PyArray_CopyFromObject(op1, PyArray_CDOUBLE, 1, 0);
if (data == NULL) return NULL;
if (PyArray_As1D(&op2, (char **)&wsave, &nsave, PyArray_DOUBLE) == -1)
goto fail;
if (data == NULL) goto fail;
npts = data->dimensions[data->nd-1];
if (nsave != npts*4+15) {
PyErr_SetString(ErrorObject, "invalid work array for fft size");
goto fail;
}
nrepeats = PyArray_SIZE(data)/npts;
dptr = (double *)data->data;
NPY_SIGINT_ON
for (i=0; i<nrepeats; i++) {
cfftf(npts, dptr, wsave);
dptr += npts*2;
}
NPY_SIGINT_OFF
PyArray_Free(op2, (char *)wsave);
return (PyObject *)data;
fail:
PyArray_Free(op2, (char *)wsave);
Py_DECREF(data);
return NULL;
}
static char fftpack_cfftb__doc__[] ="";
PyObject *
fftpack_cfftb(PyObject *self, PyObject *args)
{
PyObject *op1, *op2;
PyArrayObject *data;
double *wsave, *dptr;
int npts, nsave, nrepeats, i;
if(!PyArg_ParseTuple(args, "OO", &op1, &op2)) return NULL;
data = (PyArrayObject *)PyArray_CopyFromObject(op1, PyArray_CDOUBLE, 1, 0);
if (data == NULL) return NULL;
if (PyArray_As1D(&op2, (char **)&wsave, &nsave, PyArray_DOUBLE) == -1)
goto fail;
if (data == NULL) goto fail;
npts = data->dimensions[data->nd-1];
if (nsave != npts*4+15) {
PyErr_SetString(ErrorObject, "invalid work array for fft size");
goto fail;
}
nrepeats = PyArray_SIZE(data)/npts;
dptr = (double *)data->data;
NPY_SIGINT_ON
for (i=0; i<nrepeats; i++) {
cfftb(npts, dptr, wsave);
dptr += npts*2;
}
NPY_SIGINT_OFF
PyArray_Free(op2, (char *)wsave);
return (PyObject *)data;
fail:
PyArray_Free(op2, (char *)wsave);
Py_DECREF(data);
return NULL;
}
static char fftpack_cffti__doc__[] ="";
static PyObject *
fftpack_cffti(PyObject *self, PyObject *args)
{
PyArrayObject *op;
int dim, n;
if (!PyArg_ParseTuple(args, "i", &n)) return NULL;
dim = 4*n+15; /*Magic size needed by cffti*/
/*Create a 1 dimensional array of dimensions of type double*/
op = (PyArrayObject *)PyArray_FromDims(1, &dim, PyArray_DOUBLE);
if (op == NULL) return NULL;
NPY_SIGINT_ON
cffti(n, (double *)((PyArrayObject*)op)->data);
NPY_SIGINT_OFF
return (PyObject *)op;
}
static char fftpack_rfftf__doc__[] ="";
PyObject *
fftpack_rfftf(PyObject *self, PyObject *args)
{
PyObject *op1, *op2;
PyArrayObject *data, *ret;
double *wsave, *dptr, *rptr;
int npts, nsave, nrepeats, i, rstep;
if(!PyArg_ParseTuple(args, "OO", &op1, &op2)) return NULL;
data = (PyArrayObject *)PyArray_ContiguousFromObject(op1, PyArray_DOUBLE, 1, 0);
if (data == NULL) return NULL;
npts = data->dimensions[data->nd-1];
data->dimensions[data->nd-1] = npts/2+1;
ret = (PyArrayObject *)PyArray_Zeros(data->nd, data->dimensions,
PyArray_DescrFromType(PyArray_CDOUBLE), 0);
data->dimensions[data->nd-1] = npts;
rstep = (ret->dimensions[ret->nd-1])*2;
if (PyArray_As1D(&op2, (char **)&wsave, &nsave, PyArray_DOUBLE) == -1)
goto fail;
if (data == NULL || ret == NULL) goto fail;
if (nsave != npts*2+15) {
PyErr_SetString(ErrorObject, "invalid work array for fft size");
goto fail;
}
nrepeats = PyArray_SIZE(data)/npts;
rptr = (double *)ret->data;
dptr = (double *)data->data;
NPY_SIGINT_ON
for (i=0; i<nrepeats; i++) {
memcpy((char *)(rptr+1), dptr, npts*sizeof(double));
rfftf(npts, rptr+1, wsave);
rptr[0] = rptr[1];
rptr[1] = 0.0;
rptr += rstep;
dptr += npts;
}
NPY_SIGINT_OFF
PyArray_Free(op2, (char *)wsave);
Py_DECREF(data);
return (PyObject *)ret;
fail:
PyArray_Free(op2, (char *)wsave);
Py_XDECREF(data);
Py_XDECREF(ret);
return NULL;
}
static char fftpack_rfftb__doc__[] ="";
PyObject *
fftpack_rfftb(PyObject *self, PyObject *args)
{
PyObject *op1, *op2;
PyArrayObject *data, *ret;
double *wsave, *dptr, *rptr;
int npts, nsave, nrepeats, i;
if(!PyArg_ParseTuple(args, "OO", &op1, &op2)) return NULL;
data = (PyArrayObject *)PyArray_ContiguousFromObject(op1, PyArray_CDOUBLE, 1, 0);
if (data == NULL) return NULL;
npts = data->dimensions[data->nd-1];
ret = (PyArrayObject *)PyArray_Zeros(data->nd, data->dimensions,
PyArray_DescrFromType(PyArray_DOUBLE), 0);
if (PyArray_As1D(&op2, (char **)&wsave, &nsave, PyArray_DOUBLE) == -1)
goto fail;
if (data == NULL || ret == NULL) goto fail;
if (nsave != npts*2+15) {
PyErr_SetString(ErrorObject, "invalid work array for fft size");
goto fail;
}
nrepeats = PyArray_SIZE(ret)/npts;
rptr = (double *)ret->data;
dptr = (double *)data->data;
NPY_SIGINT_ON
for (i=0; i<nrepeats; i++) {
memcpy((char *)(rptr+1), (dptr+2), (npts-1)*sizeof(double));
rptr[0] = dptr[0];
rfftb(npts, rptr, wsave);
rptr += npts;
dptr += npts*2;
}
NPY_SIGINT_OFF
PyArray_Free(op2, (char *)wsave);
Py_DECREF(data);
return (PyObject *)ret;
fail:
PyArray_Free(op2, (char *)wsave);
Py_XDECREF(data);
Py_XDECREF(ret);
return NULL;
}
static char fftpack_rffti__doc__[] ="";
static PyObject *
fftpack_rffti(PyObject *self, PyObject *args)
{
PyArrayObject *op;
int dim, n;
if (!PyArg_ParseTuple(args, "i", &n)) return NULL;
dim = 2*n+15; /*Magic size needed by rffti*/
/*Create a 1 dimensional array of dimensions of type double*/
op = (PyArrayObject *)PyArray_FromDims(1, &dim, PyArray_DOUBLE);
if (op == NULL) return NULL;
NPY_SIGINT_ON
rffti(n, (double *)((PyArrayObject*)op)->data);
NPY_SIGINT_OFF
return (PyObject *)op;
}
/* List of methods defined in the module */
static struct PyMethodDef fftpack_methods[] = {
{"cfftf", fftpack_cfftf, 1, fftpack_cfftf__doc__},
{"cfftb", fftpack_cfftb, 1, fftpack_cfftb__doc__},
{"cffti", fftpack_cffti, 1, fftpack_cffti__doc__},
{"rfftf", fftpack_rfftf, 1, fftpack_rfftf__doc__},
{"rfftb", fftpack_rfftb, 1, fftpack_rfftb__doc__},
{"rffti", fftpack_rffti, 1, fftpack_rffti__doc__},
{NULL, NULL} /* sentinel */
};
/* Initialization function for the module (*must* be called initfftpack) */
static char fftpack_module_documentation[] =
""
;
PyMODINIT_FUNC initfftpack_lite(void)
{
PyObject *m, *d;
/* Create the module and add the functions */
m = Py_InitModule4("fftpack_lite", fftpack_methods,
fftpack_module_documentation,
(PyObject*)NULL,PYTHON_API_VERSION);
/* Import the array object */
import_array();
/* Add some symbolic constants to the module */
d = PyModule_GetDict(m);
ErrorObject = PyErr_NewException("fftpack.error", NULL, NULL);
PyDict_SetItemString(d, "error", ErrorObject);
/* XXXX Add constants here */
}
|