shithub: aubio

Download patch

ref: 37a6942ec0ea7176755e54dc4fb05206ed9a7374
parent: 8986239e572f93df68d0b49741c3684160cf5a75
author: Paul Brossier <piem@piem.org>
date: Tue Oct 30 12:30:33 EDT 2018

[py] improve py-cvec.c doc

--- a/python/ext/py-cvec.c
+++ b/python/ext/py-cvec.c
@@ -22,11 +22,11 @@
 static char Py_cvec_doc[] = ""
 "cvec(size)\n"
 "\n"
-"Data structure to hold spectral vectors.\n"
+"A container holding spectral data.\n"
 "\n"
-"A vector holding spectral data in two vectors, :attr:`phas`\n"
-"and :attr:`norm`. Each vector is a :class:`numpy.ndarray`\n"
-"of shape `(length,)`, where `length = size // 2 + 1`.\n"
+"A vector storing spectral information of one time window\n"
+"in two vectors, :attr:`phas` and :attr:`norm`, each of shape\n"
+"(:attr:`length`,), with `length = size // 2 + 1`.\n"
 "\n"
 "Parameters\n"
 "----------\n"
@@ -47,7 +47,7 @@
 "\n"
 "See Also\n"
 "--------\n"
-"fft, pvoc\n"
+"fvec, fft, pvoc\n"
 "";