Changes in src/fmat.h [4ed0ed1:0683ee2]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/fmat.h
r4ed0ed1 r0683ee2 1 1 /* 2 Copyright (C) 2009-201 3Paul Brossier <piem@aubio.org>2 Copyright (C) 2009-2015 Paul Brossier <piem@aubio.org> 3 3 4 4 This file is part of aubio. … … 63 63 \param s vector to read from 64 64 \param channel channel to read from 65 \param position sample position to read from 65 \param position sample position to read from 66 66 67 67 */ … … 70 70 /** write sample value in a buffer 71 71 72 \param s vector to write to 72 \param s vector to write to 73 73 \param data value to write in s->data[channel][position] 74 \param channel channel to write to 75 \param position sample position to write to 74 \param channel channel to write to 75 \param position sample position to write to 76 76 77 77 */ … … 102 102 smpl_t ** fmat_get_data(fmat_t *s); 103 103 104 /** print out fmat data 104 /** print out fmat data 105 105 106 \param s vector to print out 106 \param s vector to print out 107 107 108 108 */ … … 117 117 void fmat_set(fmat_t *s, smpl_t val); 118 118 119 /** set all elements to zero 119 /** set all elements to zero 120 120 121 121 \param s vector to modify … … 124 124 void fmat_zeros(fmat_t *s); 125 125 126 /** set all elements to ones 126 /** set all elements to ones 127 127 128 128 \param s vector to modify … … 149 149 void fmat_weight(fmat_t *s, fmat_t *weight); 150 150 151 /** make a copy of a matrix 151 /** make a copy of a matrix 152 152 153 153 \param s source vector
Note: See TracChangeset
for help on using the changeset viewer.