[96fb8ad] | 1 | /* |
---|
[a6db140] | 2 | Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org> |
---|
[96fb8ad] | 3 | |
---|
[a6db140] | 4 | This file is part of aubio. |
---|
[96fb8ad] | 5 | |
---|
[a6db140] | 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. |
---|
[96fb8ad] | 10 | |
---|
[a6db140] | 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/>. |
---|
[96fb8ad] | 18 | |
---|
| 19 | */ |
---|
| 20 | |
---|
| 21 | #include "aubio_priv.h" |
---|
[d1ec8cb] | 22 | #include "cvec.h" |
---|
[96fb8ad] | 23 | |
---|
[66fb3ea] | 24 | cvec_t * new_cvec( uint_t length) { |
---|
[96fb8ad] | 25 | cvec_t * s = AUBIO_NEW(cvec_t); |
---|
[66fb3ea] | 26 | uint_t j; |
---|
[96fb8ad] | 27 | s->length = length/2 + 1; |
---|
[66fb3ea] | 28 | s->norm = AUBIO_ARRAY(smpl_t,s->length); |
---|
| 29 | s->phas = AUBIO_ARRAY(smpl_t,s->length); |
---|
| 30 | for (j=0; j< s->length; j++) { |
---|
| 31 | s->norm[j]=0.; |
---|
| 32 | s->phas[j]=0.; |
---|
[96fb8ad] | 33 | } |
---|
| 34 | return s; |
---|
| 35 | } |
---|
| 36 | |
---|
| 37 | void del_cvec(cvec_t *s) { |
---|
| 38 | AUBIO_FREE(s->norm); |
---|
| 39 | AUBIO_FREE(s->phas); |
---|
| 40 | AUBIO_FREE(s); |
---|
| 41 | } |
---|
[7c206df] | 42 | |
---|
[66fb3ea] | 43 | void cvec_write_norm(cvec_t *s, smpl_t data, uint_t position) { |
---|
| 44 | s->norm[position] = data; |
---|
[7c206df] | 45 | } |
---|
[66fb3ea] | 46 | void cvec_write_phas(cvec_t *s, smpl_t data, uint_t position) { |
---|
| 47 | s->phas[position] = data; |
---|
[7c206df] | 48 | } |
---|
[66fb3ea] | 49 | smpl_t cvec_read_norm(cvec_t *s, uint_t position) { |
---|
| 50 | return s->norm[position]; |
---|
[7c206df] | 51 | } |
---|
[66fb3ea] | 52 | smpl_t cvec_read_phas(cvec_t *s, uint_t position) { |
---|
| 53 | return s->phas[position]; |
---|
[7c206df] | 54 | } |
---|
[66fb3ea] | 55 | smpl_t * cvec_get_norm(cvec_t *s) { |
---|
[7c206df] | 56 | return s->norm; |
---|
| 57 | } |
---|
[66fb3ea] | 58 | smpl_t * cvec_get_phas(cvec_t *s) { |
---|
[7c206df] | 59 | return s->phas; |
---|
| 60 | } |
---|
[d1ec8cb] | 61 | |
---|
[55b7cb4] | 62 | /* helper functions */ |
---|
| 63 | |
---|
| 64 | void cvec_print(cvec_t *s) { |
---|
[66fb3ea] | 65 | uint_t j; |
---|
| 66 | AUBIO_MSG("norm: "); |
---|
| 67 | for (j=0; j< s->length; j++) { |
---|
| 68 | AUBIO_MSG(AUBIO_SMPL_FMT " ", s->norm[j]); |
---|
| 69 | } |
---|
| 70 | AUBIO_MSG("\n"); |
---|
| 71 | AUBIO_MSG("phas: "); |
---|
| 72 | for (j=0; j< s->length; j++) { |
---|
| 73 | AUBIO_MSG(AUBIO_SMPL_FMT " ", s->phas[j]); |
---|
[55b7cb4] | 74 | } |
---|
[66fb3ea] | 75 | AUBIO_MSG("\n"); |
---|
[55b7cb4] | 76 | } |
---|
| 77 | |
---|
[012466b] | 78 | void cvec_set(cvec_t *s, smpl_t val) { |
---|
[66fb3ea] | 79 | uint_t j; |
---|
| 80 | for (j=0; j< s->length; j++) { |
---|
| 81 | s->norm[j] = val; |
---|
[012466b] | 82 | } |
---|
| 83 | } |
---|
| 84 | |
---|
| 85 | void cvec_zeros(cvec_t *s) { |
---|
| 86 | cvec_set(s, 0.); |
---|
| 87 | } |
---|
| 88 | |
---|
| 89 | void cvec_ones(cvec_t *s) { |
---|
| 90 | cvec_set(s, 1.); |
---|
| 91 | } |
---|
| 92 | |
---|