1 | /* |
---|
2 | Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org> |
---|
3 | |
---|
4 | This file is part of aubio. |
---|
5 | |
---|
6 | aubio is free software: you can redistribute it and/or modify |
---|
7 | it under the terms of the GNU General Public License as published by |
---|
8 | the Free Software Foundation, either version 3 of the License, or |
---|
9 | (at your option) any later version. |
---|
10 | |
---|
11 | aubio is distributed in the hope that it will be useful, |
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | GNU General Public License for more details. |
---|
15 | |
---|
16 | You should have received a copy of the GNU General Public License |
---|
17 | along with aubio. If not, see <http://www.gnu.org/licenses/>. |
---|
18 | |
---|
19 | */ |
---|
20 | |
---|
21 | #include "aubio_priv.h" |
---|
22 | #include "fvec.h" |
---|
23 | |
---|
24 | fvec_t * new_fvec( uint_t length) { |
---|
25 | fvec_t * s = AUBIO_NEW(fvec_t); |
---|
26 | s->length = length; |
---|
27 | s->data = AUBIO_ARRAY(smpl_t, s->length); |
---|
28 | return s; |
---|
29 | } |
---|
30 | |
---|
31 | void del_fvec(fvec_t *s) { |
---|
32 | AUBIO_FREE(s->data); |
---|
33 | AUBIO_FREE(s); |
---|
34 | } |
---|
35 | |
---|
36 | void fvec_write_sample(fvec_t *s, smpl_t data, uint_t position) { |
---|
37 | s->data[position] = data; |
---|
38 | } |
---|
39 | |
---|
40 | smpl_t fvec_read_sample(fvec_t *s, uint_t position) { |
---|
41 | return s->data[position]; |
---|
42 | } |
---|
43 | |
---|
44 | smpl_t * fvec_get_data(fvec_t *s) { |
---|
45 | return s->data; |
---|
46 | } |
---|
47 | |
---|
48 | /* helper functions */ |
---|
49 | |
---|
50 | void fvec_print(fvec_t *s) { |
---|
51 | uint_t j; |
---|
52 | for (j=0; j< s->length; j++) { |
---|
53 | AUBIO_MSG(AUBIO_SMPL_FMT " ", s->data[j]); |
---|
54 | } |
---|
55 | AUBIO_MSG("\n"); |
---|
56 | } |
---|
57 | |
---|
58 | void fvec_set(fvec_t *s, smpl_t val) { |
---|
59 | uint_t j; |
---|
60 | for (j=0; j< s->length; j++) { |
---|
61 | s->data[j] = val; |
---|
62 | } |
---|
63 | } |
---|
64 | |
---|
65 | void fvec_zeros(fvec_t *s) { |
---|
66 | fvec_set(s, 0.); |
---|
67 | } |
---|
68 | |
---|
69 | void fvec_ones(fvec_t *s) { |
---|
70 | fvec_set(s, 1.); |
---|
71 | } |
---|
72 | |
---|
73 | void fvec_rev(fvec_t *s) { |
---|
74 | uint_t j; |
---|
75 | for (j=0; j< FLOOR(s->length/2); j++) { |
---|
76 | ELEM_SWAP(s->data[j], s->data[s->length-1-j]); |
---|
77 | } |
---|
78 | } |
---|
79 | |
---|
80 | void fvec_weight(fvec_t *s, fvec_t *weight) { |
---|
81 | uint_t j; |
---|
82 | uint_t length = MIN(s->length, weight->length); |
---|
83 | for (j=0; j< length; j++) { |
---|
84 | s->data[j] *= weight->data[j]; |
---|
85 | } |
---|
86 | } |
---|
87 | |
---|
88 | void fvec_copy(fvec_t *s, fvec_t *t) { |
---|
89 | uint_t j; |
---|
90 | uint_t length = MIN(s->length, t->length); |
---|
91 | if (s->length != t->length) { |
---|
92 | AUBIO_WRN("trying to copy %d elements to %d elements \n", |
---|
93 | s->length, t->length); |
---|
94 | } |
---|
95 | for (j=0; j< length; j++) { |
---|
96 | t->data[j] = s->data[j]; |
---|
97 | } |
---|
98 | } |
---|
99 | |
---|