Changes in src/fmat.h [f72364d:4435ea6e]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/fmat.h
rf72364d r4435ea6e 28 28 /** \file 29 29 30 Matrix of real valued data30 Real buffers 31 31 32 This file specifies the fmat_t type, which is used in aubio to store arrays 33 of floating point values. 34 35 \example test-fmat.c 32 This file specifies the fmat_t type, which is used in aubio to store real 33 valued arrays. 36 34 37 35 */ … … 39 37 /** Buffer for real data */ 40 38 typedef struct { 41 uint_t length; /**< length of matrix*/42 uint_t height; /**< height of matrix*/43 smpl_t **data; /**< data array of size [length] * [height] */39 uint_t length; /**< length of buffer */ 40 uint_t height; /**< number of channels */ 41 smpl_t **data; /**< data array of size [length] * [channels] */ 44 42 } fmat_t; 45 43
Note: See TracChangeset
for help on using the changeset viewer.