source: python/ext/py-musicutils.h @ 5a7e2c3

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 5a7e2c3 was efa62ce, checked in by Paul Brossier <piem@piem.org>, 9 years ago

ext/py-musicutils.c: complete window implementation

  • Property mode set to 100644
File size: 481 bytes
Line 
1#ifndef _PY_AUBIO_MUSICUTILS_H_
2#define _PY_AUBIO_MUSICUTILS_H_
3
4static 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
16PyObject * Py_aubio_window(PyObject *self, PyObject *args);
17
18#endif /* _PY_AUBIO_MUSICUTILS_H_ */
Note: See TracBrowser for help on using the repository browser.