From: Paul Brossier Date: Tue, 30 Oct 2018 15:30:33 +0000 (+0100) Subject: [py] improve py-cvec.c doc X-Git-Tag: 0.4.8~90^2~13 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=37a6942ec0ea7176755e54dc4fb05206ed9a7374;p=aubio.git [py] improve py-cvec.c doc --- diff --git a/python/ext/py-cvec.c b/python/ext/py-cvec.c index 1426c0e2..4d0c1d81 100644 --- a/python/ext/py-cvec.c +++ b/python/ext/py-cvec.c @@ -22,11 +22,11 @@ typedef struct 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 @@ static char Py_cvec_doc[] = "" "\n" "See Also\n" "--------\n" -"fft, pvoc\n" +"fvec, fft, pvoc\n" "";