|
aubio
0.4.1
|
Matrix of real valued data. More...
Go to the source code of this file.
Data Structures | |
| struct | fmat_t |
| Buffer for real data. More... | |
Functions | |
| fmat_t * | new_fmat (uint_t height, uint_t length) |
| fmat_t buffer creation function | |
| void | del_fmat (fmat_t *s) |
| fmat_t buffer deletion function | |
| smpl_t | fmat_get_sample (fmat_t *s, uint_t channel, uint_t position) |
| read sample value in a buffer | |
| void | fmat_set_sample (fmat_t *s, smpl_t data, uint_t channel, uint_t position) |
| write sample value in a buffer | |
| void | fmat_get_channel (fmat_t *s, uint_t channel, fvec_t *output) |
| read channel vector from a buffer | |
| smpl_t * | fmat_get_channel_data (fmat_t *s, uint_t channel) |
| get vector buffer from an fmat data | |
| smpl_t ** | fmat_get_data (fmat_t *s) |
| read data from a buffer | |
| void | fmat_print (fmat_t *s) |
| print out fmat data | |
| void | fmat_set (fmat_t *s, smpl_t val) |
| set all elements to a given value | |
| void | fmat_zeros (fmat_t *s) |
| set all elements to zero | |
| void | fmat_ones (fmat_t *s) |
| set all elements to ones | |
| void | fmat_rev (fmat_t *s) |
| revert order of vector elements | |
| void | fmat_weight (fmat_t *s, fmat_t *weight) |
| apply weight to vector | |
| void | fmat_copy (fmat_t *s, fmat_t *t) |
| make a copy of a matrix | |
Matrix of real valued data.
This file specifies the fmat_t type, which is used in aubio to store arrays of floating point values.
Definition in file fmat.h.
fmat_t buffer deletion function
| s | buffer to delete as returned by new_fmat() |
make a copy of a matrix
| s | source vector |
| t | vector to copy to |
| void fmat_get_channel | ( | fmat_t * | s, |
| uint_t | channel, | ||
| fvec_t * | output | ||
| ) |
read channel vector from a buffer
| s | vector to read from |
| channel | channel to read from |
| output | fvec_t to output to |
| smpl_t* fmat_get_channel_data | ( | fmat_t * | s, |
| uint_t | channel | ||
| ) |
get vector buffer from an fmat data
| s | vector to read from |
| channel | channel to read from |
| smpl_t** fmat_get_data | ( | fmat_t * | s | ) |
read data from a buffer
| s | vector to read from |
| smpl_t fmat_get_sample | ( | fmat_t * | s, |
| uint_t | channel, | ||
| uint_t | position | ||
| ) |
read sample value in a buffer
| s | vector to read from |
| channel | channel to read from |
| position | sample position to read from |
| void fmat_print | ( | fmat_t * | s | ) |
print out fmat data
| s | vector to print out |
set all elements to a given value
| s | vector to modify |
| val | value to set elements to |
| void fmat_set_sample | ( | fmat_t * | s, |
| smpl_t | data, | ||
| uint_t | channel, | ||
| uint_t | position | ||
| ) |
write sample value in a buffer
| s | vector to write to |
| data | value to write in s->data[channel][position] |
| channel | channel to write to |
| position | sample position to write to |
| void fmat_weight | ( | fmat_t * | s, |
| fmat_t * | weight | ||
| ) |
apply weight to vector
If the weight vector is longer than s, only the first elements are used. If the weight vector is shorter than s, the last elements of s are not weighted.
| s | vector to weight |
| weight | weighting coefficients |
| void fmat_zeros | ( | fmat_t * | s | ) |
set all elements to zero
| s | vector to modify |
fmat_t buffer creation function
| length | the length of the matrix to create |
| height | the height of the matrix to create |
1.7.6.1