Changeset 41eff53
- Timestamp:
- Nov 28, 2013, 9:50:25 PM (11 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:
- 767990e
- Parents:
- c666a18
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lvec.c
rc666a18 r41eff53 24 24 lvec_t * new_lvec( uint_t length) { 25 25 lvec_t * s = AUBIO_NEW(lvec_t); 26 uint_t j;27 26 s->length = length; 28 27 s->data = AUBIO_ARRAY(lsmp_t, s->length); 29 for (j=0; j< s->length; j++) {30 s->data[j]=0.;31 }32 28 return s; 33 29 }
Note: See TracChangeset
for help on using the changeset viewer.