Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/fmat.h

    rf72364d r4435ea6e  
    2828/** \file
    2929
    30   Matrix of real valued data
     30  Real buffers
    3131
    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.
    3634
    3735*/
     
    3937/** Buffer for real data */
    4038typedef 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] */
    4442} fmat_t;
    4543
Note: See TracChangeset for help on using the changeset viewer.