From: Paul Brossier Date: Fri, 25 Dec 2009 04:04:59 +0000 (+0100) Subject: py-cvec.c: improved documentation X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=474f297fb978bf8247e820d51a425fb8d960ff5c;p=aubio.git py-cvec.c: improved documentation --- diff --git a/interfaces/python/py-cvec.c b/interfaces/python/py-cvec.c index 387e671e..5de5175c 100644 --- a/interfaces/python/py-cvec.c +++ b/interfaces/python/py-cvec.c @@ -251,10 +251,10 @@ static PyMethodDef Py_cvec_methods[] = { static PyGetSetDef Py_cvec_getseters[] = { {"norm", (getter)Py_cvec_get_norm, (setter)Py_cvec_set_norm, - "Content of the magnitude of this cvec", + "Numpy vector of shape (length,) containing the magnitude", NULL}, {"phas", (getter)Py_cvec_get_phas, (setter)Py_cvec_set_phas, - "Content of the magnitude of this cvec", + "Numpy vector of shape (length,) containing the phase", NULL}, {NULL} /* sentinel */ };