Changeset 60fc05b for src/fvec.h
- Timestamp:
- Sep 5, 2015, 12:27:38 PM (9 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:
- f264b17
- Parents:
- b257b60 (diff), f45dd12 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/fvec.h
rb257b60 r60fc05b 1 1 /* 2 Copyright (C) 2003-201 3Paul Brossier <piem@aubio.org>2 Copyright (C) 2003-2015 Paul Brossier <piem@aubio.org> 3 3 4 4 This file is part of aubio. … … 87 87 88 88 \param s vector to read from 89 \param position sample position to read from 89 \param position sample position to read from 90 90 91 91 */ … … 94 94 /** write sample value in a buffer 95 95 96 \param s vector to write to 96 \param s vector to write to 97 97 \param data value to write in s->data[position] 98 \param position sample position to write to 98 \param position sample position to write to 99 99 100 100 */ … … 108 108 smpl_t * fvec_get_data(fvec_t *s); 109 109 110 /** print out fvec data 110 /** print out fvec data 111 111 112 \param s vector to print out 112 \param s vector to print out 113 113 114 114 */ … … 123 123 void fvec_set_all (fvec_t *s, smpl_t val); 124 124 125 /** set all elements to zero 125 /** set all elements to zero 126 126 127 127 \param s vector to modify … … 130 130 void fvec_zeros(fvec_t *s); 131 131 132 /** set all elements to ones 132 /** set all elements to ones 133 133 134 134 \param s vector to modify
Note: See TracChangeset
for help on using the changeset viewer.