aubio  0.4.0
 All Data Structures Files Functions Variables Typedefs Macros
Data Structures | Functions
cvec.h File Reference

Vector of complex-valued data, stored in polar coordinates. More...

Go to the source code of this file.

Data Structures

struct  cvec_t
 Vector of real-valued phase and spectrum data. More...
 

Functions

cvec_tnew_cvec (uint_t length)
 cvec_t buffer creation function More...
 
void del_cvec (cvec_t *s)
 cvec_t buffer deletion function More...
 
void cvec_norm_set_sample (cvec_t *s, smpl_t val, uint_t position)
 write norm value in a complex buffer More...
 
void cvec_phas_set_sample (cvec_t *s, smpl_t val, uint_t position)
 write phase value in a complex buffer More...
 
smpl_t cvec_norm_get_sample (cvec_t *s, uint_t position)
 read norm value from a complex buffer More...
 
smpl_t cvec_phas_get_sample (cvec_t *s, uint_t position)
 read phase value from a complex buffer More...
 
smpl_tcvec_norm_get_data (cvec_t *s)
 read norm data from a complex buffer More...
 
smpl_tcvec_phas_get_data (cvec_t *s)
 read phase data from a complex buffer More...
 
void cvec_print (cvec_t *s)
 print out cvec data More...
 
void cvec_copy (cvec_t *s, cvec_t *t)
 make a copy of a vector More...
 
void cvec_norm_set_all (cvec_t *s, smpl_t val)
 set all norm elements to a given value More...
 
void cvec_norm_zeros (cvec_t *s)
 set all norm elements to zero More...
 
void cvec_norm_ones (cvec_t *s)
 set all norm elements to one More...
 
void cvec_phas_set_all (cvec_t *s, smpl_t val)
 set all phase elements to a given value More...
 
void cvec_phas_zeros (cvec_t *s)
 set all phase elements to zero More...
 
void cvec_phas_ones (cvec_t *s)
 set all phase elements to one More...
 
void cvec_zeros (cvec_t *s)
 set all norm and phas elements to zero More...
 

Detailed Description

Vector of complex-valued data, stored in polar coordinates.

This file specifies the cvec_t buffer type, which is used throughout aubio to store complex data. Complex values are stored in terms of cvec_t.phas and norm, within 2 vectors of smpl_t of size (size/2+1) each.

Definition in file cvec.h.

Function Documentation

void cvec_copy ( cvec_t s,
cvec_t t 
)

make a copy of a vector

Parameters
ssource vector
tvector to copy to
Examples:
test-cvec.c.
smpl_t* cvec_norm_get_data ( cvec_t s)

read norm data from a complex buffer

smpl_t *data = s->norm;
Parameters
svector to read from
smpl_t cvec_norm_get_sample ( cvec_t s,
uint_t  position 
)

read norm value from a complex buffer

This is equivalent to:

smpl_t foo = s->norm[position];
Parameters
svector to read from
positionsample position to read from
void cvec_norm_ones ( cvec_t s)

set all norm elements to one

Parameters
svector to modify
Examples:
test-cvec.c.
void cvec_norm_set_all ( cvec_t s,
smpl_t  val 
)

set all norm elements to a given value

Parameters
svector to modify
valvalue to set elements to
Examples:
spectral/test-mfcc.c.
void cvec_norm_set_sample ( cvec_t s,
smpl_t  val,
uint_t  position 
)

write norm value in a complex buffer

This is equivalent to:

s->norm[position] = val;
Parameters
svector to write to
valnorm value to write in s->norm[position]
positionsample position to write to
void cvec_norm_zeros ( cvec_t s)

set all norm elements to zero

Parameters
svector to modify
Examples:
test-cvec.c.
smpl_t* cvec_phas_get_data ( cvec_t s)

read phase data from a complex buffer

This is equivalent to:

smpl_t *data = s->phas;
Parameters
svector to read from
smpl_t cvec_phas_get_sample ( cvec_t s,
uint_t  position 
)

read phase value from a complex buffer

This is equivalent to:

smpl_t foo = s->phas[position];
Parameters
svector to read from
positionsample position to read from
Returns
the value of the sample at position
void cvec_phas_ones ( cvec_t s)

set all phase elements to one

Parameters
svector to modify
Examples:
test-cvec.c.
void cvec_phas_set_all ( cvec_t s,
smpl_t  val 
)

set all phase elements to a given value

Parameters
svector to modify
valvalue to set elements to
void cvec_phas_set_sample ( cvec_t s,
smpl_t  val,
uint_t  position 
)

write phase value in a complex buffer

This is equivalent to:

s->phas[position] = val;
Parameters
svector to write to
valphase value to write in s->phas[position]
positionsample position to write to
void cvec_phas_zeros ( cvec_t s)

set all phase elements to zero

Parameters
svector to modify
Examples:
test-cvec.c.
void cvec_print ( cvec_t s)

print out cvec data

Parameters
svector to print out
Examples:
spectral/test-phasevoc.c, src/spectral/test-fft.c, and test-cvec.c.
void cvec_zeros ( cvec_t s)

set all norm and phas elements to zero

Parameters
svector to modify
Examples:
test-cvec.c.
void del_cvec ( cvec_t s)
cvec_t* new_cvec ( uint_t  length)

cvec_t buffer creation function

This function creates a cvec_t structure holding two arrays of size [length/2+1], corresponding to the norm and phase values of the spectral frame. The length stored in the structure is the actual size of both arrays, not the length of the complex and symmetrical vector, specified as creation argument.

Parameters
lengththe length of the buffer to create
Examples:
spectral/test-filterbank.c, spectral/test-filterbank_mel.c, spectral/test-mfcc.c, spectral/test-phasevoc.c, spectral/test-specdesc.c, spectral/test-tss.c, src/spectral/test-fft.c, and test-cvec.c.