Changes in src/lvec.h [c7860af:f72364d]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/lvec.h ¶
rc7860af rf72364d 28 28 /** \file 29 29 30 Real buffers30 Vector of real-valued data in double precision 31 31 32 This file specifies the lvec_t buffer type, which is used in aubio to store 33 double precision real data. Note that the lvec_t data type is mostly used for 34 IIR filters (see temporal/filter.h). 32 This file specifies the ::lvec_t buffer type, which is used in some places in 33 aubio to store a vector of ::lsmp_t. 34 35 Note: the lvec_t data type is required in some algorithms such as IIR filters 36 (see temporal/filter.h). 37 38 \example test-lvec.c 35 39 36 40 */ … … 38 42 /** Buffer for real data in double precision */ 39 43 typedef struct { 40 uint_t length; 41 lsmp_t *data; 44 uint_t length; /**< length of buffer */ 45 lsmp_t *data; /**< data array of size [length] */ 42 46 } lvec_t; 43 47
Note: See TracChangeset
for help on using the changeset viewer.