Changeset 37a6942
- Timestamp:
- Oct 30, 2018, 4:30:33 PM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
- Children:
- 6d8ae981
- Parents:
- 8986239
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-cvec.c
r8986239 r37a6942 23 23 "cvec(size)\n" 24 24 "\n" 25 " Data structure to hold spectral vectors.\n"26 "\n" 27 "A vector holding spectral data in two vectors, :attr:`phas`\n"28 " and :attr:`norm`. Each vector is a :class:`numpy.ndarray`\n"29 " of shape `(length,)`, where`length = size // 2 + 1`.\n"25 "A container holding spectral data.\n" 26 "\n" 27 "A vector storing spectral information of one time window\n" 28 "in two vectors, :attr:`phas` and :attr:`norm`, each of shape\n" 29 "(:attr:`length`,), with `length = size // 2 + 1`.\n" 30 30 "\n" 31 31 "Parameters\n" … … 48 48 "See Also\n" 49 49 "--------\n" 50 "f ft, pvoc\n"50 "fvec, fft, pvoc\n" 51 51 ""; 52 52
Note: See TracChangeset
for help on using the changeset viewer.