From 8405561a7747d0027538df0523d77da0631ff8fb Mon Sep 17 00:00:00 2001 From: jofret Date: Tue, 9 Sep 2008 17:36:18 +0000 Subject: * eyes -> eye * Change includes * conj moved from elementary to auxiliary --- src/matrixOperations/includes/eye.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/matrixOperations/includes/eye.h (limited to 'src/matrixOperations/includes/eye.h') diff --git a/src/matrixOperations/includes/eye.h b/src/matrixOperations/includes/eye.h new file mode 100644 index 00000000..4c7d4569 --- /dev/null +++ b/src/matrixOperations/includes/eye.h @@ -0,0 +1,30 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Allan SIMON + * + * 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 __EYE_H__ +#define __EYE_H__ + +#include "floatComplex.h" +#include "doubleComplex.h" + +void seyea(float* in, int _iRows, int _iCols); + +void deyea(double* in, int _iRows, int _iCols); + +void ceyea(floatComplex* in, int _iRows, int _iCols); + +void zeyea(doubleComplex* in, int _iRows, int _iCols); + + + +#endif /* !__EYE_H__ */ + -- cgit