Changes in src/fvec.h [7166ef8:941c9f9]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/fvec.h
r7166ef8 r941c9f9 1 1 /* 2 Copyright (C) 2003-201 5Paul Brossier <piem@aubio.org>2 Copyright (C) 2003-2013 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 … … 163 163 void fvec_copy(fvec_t *s, fvec_t *t); 164 164 165 /** make a copy of a vector, applying weights to each element166 167 \param in input vector168 \param weight weights vector169 \param out output vector170 171 */172 void fvec_weighted_copy(fvec_t *in, fvec_t *weight, fvec_t *out);173 174 165 #ifdef __cplusplus 175 166 }
Note: See TracChangeset
for help on using the changeset viewer.