Changeset ff68b34


Ignore:
Timestamp:
Sep 16, 2007, 10:03:40 PM (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:
17961b0
Parents:
dc73a4d0
Message:

filterbank.c: remove aubio_dump_filterbank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/filterbank.c

    rdc73a4d0 rff68b34  
    190190}
    191191
    192 void aubio_dump_filterbank(aubio_filterbank_t * fb){
    193 
    194   FILE * mlog;
    195   mlog=fopen("filterbank.txt","w");
    196  
    197   int k,n;
    198   //dumping filter values
    199   //smpl_t area_tmp=0.f;
    200   for(n = 0; n < fb->n_filters; n++){
    201     for(k = 0; k < fb->win_s; k++){
    202       fprintf(mlog,"%f ",fb->filters[n]->data[0][k]);
    203     }
    204     fprintf(mlog,"\n");
    205   }
    206  
    207   if(mlog) fclose(mlog);
    208 }
    209 
    210192void del_aubio_filterbank(aubio_filterbank_t * fb){
    211193  uint_t filter_cnt;
Note: See TracChangeset for help on using the changeset viewer.