diff options
author | torset | 2009-01-08 14:23:17 +0000 |
---|---|---|
committer | torset | 2009-01-08 14:23:17 +0000 |
commit | 1726f7324a2af76a580e5be58441d95548859eed (patch) | |
tree | 91f4a5e446d54f28b98fe6a9aff957c2f7dd442f | |
parent | ff5533cb4db032ad9648a563d8898492393df468 (diff) | |
download | scilab2c-1726f7324a2af76a580e5be58441d95548859eed.tar.gz scilab2c-1726f7324a2af76a580e5be58441d95548859eed.tar.bz2 scilab2c-1726f7324a2af76a580e5be58441d95548859eed.zip |
add lpc2cep.h
-rw-r--r-- | src/signalProcessing/includes/lpc2cep.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/signalProcessing/includes/lpc2cep.h b/src/signalProcessing/includes/lpc2cep.h new file mode 100644 index 00000000..31484d2d --- /dev/null +++ b/src/signalProcessing/includes/lpc2cep.h @@ -0,0 +1,35 @@ +/* + * 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 + * + */ + +#ifndef __LPC2CEP_H__ +#define __LPC2CEP_H__ + +#include "floatComplex.h" +#include "doubleComplex.h" + +/* Matrices on input are squared because matricial logarithm + works only with squared matrices (and logm is used in lcp2cep) + So we just have to pass one parametre on input for the size of + the input matrix, this parametre is size and it's the numbers of + rows(or columns) +*/ + +void slpc2cepa(float* in, int size, float* out); + +void dlpc2cepa(double* in, int size, double* out); + +void clpc2cepa(floatComplex* in, int size, floatComplex* out); + +void zlpc2cepa(doubleComplex* in, int size, doubleComplex* out); + +#endif /*__LPC2CEP_H__*/ + |