Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/lvec.h

    rf72364d rc7860af  
    2828/** \file
    2929
    30   Vector of real-valued data in double precision
     30  Real buffers
    3131
    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).
    3935
    4036*/
     
    4238/** Buffer for real data in double precision */
    4339typedef 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] */
    4642} lvec_t;
    4743
Note: See TracChangeset for help on using the changeset viewer.