Changeset 11c899b


Ignore:
Timestamp:
Nov 17, 2018, 3:02:00 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
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:
195e22e4
Parents:
d66d2ac
Message:

[mfcc] add scale documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/mfcc.h

    rd66d2ac r11c899b  
    9595uint_t aubio_mfcc_get_power (aubio_mfcc_t *mf);
    9696
     97/** set scaling parameter
     98
     99  \param mf mfcc object, as returned by new_aubio_mfcc()
     100  \param scale Scaling value to apply.
     101
     102  Scales the output of the filterbank after taking its logarithm and before
     103  computing the DCT. Defaults to `1`.
     104
     105*/
    97106uint_t aubio_mfcc_set_scale (aubio_mfcc_t *mf, smpl_t scale);
     107
     108/** get scaling parameter
     109
     110  \param mf mfcc object, as returned by new_aubio_mfcc()
     111  \return current scaling parameter. Defaults to `1`.
     112
     113 */
    98114uint_t aubio_mfcc_get_scale (aubio_mfcc_t *mf);
    99115
Note: See TracChangeset for help on using the changeset viewer.