Changes in src/lvec.h [f72364d:c7860af]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/lvec.h ¶
rf72364d rc7860af 28 28 /** \file 29 29 30 Vector of real-valued data in double precision30 Real buffers 31 31 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 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). 39 35 40 36 */ … … 42 38 /** Buffer for real data in double precision */ 43 39 typedef struct { 44 uint_t length; /**< length of buffer */45 lsmp_t *data; /**< data array of size [length] */40 uint_t length; /**< length of buffer */ 41 lsmp_t *data; /**< data array of size [length] */ 46 42 } lvec_t; 47 43
Note: See TracChangeset
for help on using the changeset viewer.