diff options
author | jofret | 2008-09-09 17:36:18 +0000 |
---|---|---|
committer | jofret | 2008-09-09 17:36:18 +0000 |
commit | 8405561a7747d0027538df0523d77da0631ff8fb (patch) | |
tree | 9080baeaec1e97265d792d67b4e0154ab9b6e356 /src/matrixOperations/includes/eye.h | |
parent | 0d67b0e29996ed0ed54125aa42de343a38513ba2 (diff) | |
download | scilab2c-8405561a7747d0027538df0523d77da0631ff8fb.tar.gz scilab2c-8405561a7747d0027538df0523d77da0631ff8fb.tar.bz2 scilab2c-8405561a7747d0027538df0523d77da0631ff8fb.zip |
* eyes -> eye
* Change includes
* conj moved from elementary to auxiliary
Diffstat (limited to 'src/matrixOperations/includes/eye.h')
-rw-r--r-- | src/matrixOperations/includes/eye.h | 30 |
1 files changed, 30 insertions, 0 deletions
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__ */ + |