Mercurial > hg > libxtract
comparison src/delta.c @ 1:b8f2448f7207
Initial import
author | Jamie Bullock <jamie@postlude.co.uk> |
---|---|
date | Mon, 02 Oct 2006 14:18:15 +0000 |
parents | |
children | 0ea4d6430cfc |
comparison
equal
deleted
inserted
replaced
0:28af86ad3cc1 | 1:b8f2448f7207 |
---|---|
1 /* libxtract feature extraction library | |
2 * | |
3 * Copyright (C) 2006 Jamie Bullock | |
4 * | |
5 * This program is free software; you can redistribute it and/or modify | |
6 * it under the terms of the GNU General Public License as published by | |
7 * the Free Software Foundation; either version 2 of the License, or | |
8 * (at your option) any later version. | |
9 * | |
10 * This program is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 * GNU General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU General Public License | |
16 * along with this program; if not, write to the Free Software | |
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, | |
18 * USA. | |
19 */ | |
20 | |
21 /* xtract_delta.c: defines functions that extract a feature as a single value from more than one input vector */ | |
22 | |
23 #include "xtract/xtract_delta.h" | |
24 #include "xtract/xtract_macros.h" | |
25 | |
26 int xtract_flux(float *data, int N, void *argv , float *result){ | |
27 | |
28 NOT_IMPLEMENTED; | |
29 | |
30 } | |
31 | |
32 int xtract_attack_time(float *data, int N, void *argv , float *result){ | |
33 | |
34 NOT_IMPLEMENTED; | |
35 | |
36 } | |
37 | |
38 int xtract_decay_time(float *data, int N, void *argv, float *result){ | |
39 | |
40 NOT_IMPLEMENTED; | |
41 | |
42 } | |
43 | |
44 int xtract_delta_feature(float *data, int N, void *argv, float *result){ | |
45 | |
46 NOT_IMPLEMENTED; | |
47 | |
48 } | |
49 |