ref: ea912ccd672c4302b06a6d379fa37fdba1d843d3
parent: 8a7b344eac245358903a1223b6d01b323bf4f7fb
author: Paul Brossier <piem@piem.org>
date: Mon Apr 8 06:27:55 EDT 2013
src/mathutils.h: markdown syntax
--- a/src/mathutils.h
+++ b/src/mathutils.h
@@ -40,9 +40,8 @@
/** compute the mean of a vector
\param s vector to compute mean from
+ \return the mean of `v`
- \return the mean of v
-
*/
smpl_t fvec_mean (fvec_t * s);
@@ -258,7 +257,7 @@
\param s0,s1,s2 are 3 consecutive samples of a curve
\param pf is the floating point index [0;2]
- \return s0 + (pf/2.)*((pf-3.)*s0-2.*(pf-2.)*s1+(pf-1.)*s2);
+ \return \f$ s0 + (pf/2.)*((pf-3.)*s0-2.*(pf-2.)*s1+(pf-1.)*s2); \f$
*/
smpl_t aubio_quadfrac (smpl_t s0, smpl_t s1, smpl_t s2, smpl_t pf);