Changeset 0dbdb40 for src/mathutils.c


Ignore:
Timestamp:
Apr 18, 2007, 1:07:48 AM (17 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, pitchshift, sampler, timestretch, yinfft+
Children:
c8b80cd
Parents:
5507e9d
Message:

mathutils.c: add aubio_spectral_centroid

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mathutils.c

    r5507e9d r0dbdb40  
    458458}
    459459
     460smpl_t aubio_spectral_centroid(cvec_t * spectrum, smpl_t samplerate) {
     461  uint_t i=0, j;
     462  smpl_t sum = 0., sc = 0.;
     463  for ( j = 0; j < spectrum->length; j++ ) {
     464    sum += spectrum->norm[i][j];
     465  }
     466  if (sum == 0.) return 0.;
     467  for ( j = 0; j < spectrum->length; j++ ) {
     468    sc += (smpl_t)j * spectrum->norm[i][j];
     469  }
     470  return sc / sum * samplerate / (smpl_t)(spectrum->length);
     471}
     472
    460473void aubio_autocorr(fvec_t * input, fvec_t * output){
    461474        uint_t i = 0, j = 0, length = input->length;
Note: See TracChangeset for help on using the changeset viewer.