diff options
author | torset | 2009-01-08 13:45:43 +0000 |
---|---|---|
committer | torset | 2009-01-08 13:45:43 +0000 |
commit | 9e42e8fa7564d5c1ee5cb773eba3da44c573e674 (patch) | |
tree | 3637e4f045ab66452ee2e7d2de4b63e2c138af4f /src/signalProcessing/lpc2cep/testDoubleLpc2cep.c | |
parent | 2e66ffd52a63eb16f138679a3f2d90d4d2c853a9 (diff) | |
download | scilab2c-9e42e8fa7564d5c1ee5cb773eba3da44c573e674.tar.gz scilab2c-9e42e8fa7564d5c1ee5cb773eba3da44c573e674.tar.bz2 scilab2c-9e42e8fa7564d5c1ee5cb773eba3da44c573e674.zip |
add lcp2cep (tests needed)
Diffstat (limited to 'src/signalProcessing/lpc2cep/testDoubleLpc2cep.c')
-rw-r--r-- | src/signalProcessing/lpc2cep/testDoubleLpc2cep.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/signalProcessing/lpc2cep/testDoubleLpc2cep.c b/src/signalProcessing/lpc2cep/testDoubleLpc2cep.c new file mode 100644 index 00000000..29c38598 --- /dev/null +++ b/src/signalProcessing/lpc2cep/testDoubleLpc2cep.c @@ -0,0 +1,39 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008 - INRIA - Arnaud TORSET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ + + +#include <assert.h> +#include <math.h> +#include <stdio.h> +#include "lpc2cep.h" + +static void dlpc2cepaTest(void){ + +} + +static void zlpc2cepaTest(void){ + +} + +static int lpc2cepTest(void){ + dlpc2cepaTest(); + zlpc2cepaTest(); + return 0; +} + + +int main(void){ + assert(lpc2cepTest()==0); + return 0; +} + + |