- Timestamp:
- Oct 19, 2009, 2:45:13 PM (15 years ago)
- 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:
- b849106
- Parents:
- 59c046d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/src/test-biquad.c
r59c046d rb01bd4a 6 6 uint_t channels = 1; /* number of channel */ 7 7 fvec_t * in = new_fvec (win_s, channels); /* input buffer */ 8 aubio_ biquad_t * o = new_aubio_biquad(0.3,0.2,0.1,0.2,0.3);8 aubio_filter_t * o = new_aubio_filter_biquad(0.3,0.2,0.1,0.2,0.3, channels); 9 9 10 aubio_ biquad_do_filtfilt(o,in,in);11 aubio_ biquad_do(o,in);10 aubio_filter_do_filtfilt(o,in,in); 11 aubio_filter_do(o,in); 12 12 13 del_aubio_ biquad(o);13 del_aubio_filter(o); 14 14 del_fvec(in); 15 15 return 0;
Note: See TracChangeset
for help on using the changeset viewer.