ext/py-musicutils.c: add db_spl
[aubio.git] / python / ext / py-musicutils.h
1 #ifndef _PY_AUBIO_MUSICUTILS_H_
2 #define _PY_AUBIO_MUSICUTILS_H_
3
4 static char Py_aubio_window_doc[] = ""
5 "window(string, integer) -> fvec\n"
6 "\n"
7 "Create a window\n"
8 "\n"
9 "Example\n"
10 "-------\n"
11 "\n"
12 ">>> window('hanningz', 1024)\n"
13 "array([  0.00000000e+00,   9.41753387e-06,   3.76403332e-05, ...,\n"
14 "         8.46982002e-05,   3.76403332e-05,   9.41753387e-06], dtype=float32)";
15
16 PyObject * Py_aubio_window(PyObject *self, PyObject *args);
17
18 #endif /* _PY_AUBIO_MUSICUTILS_H_ */