From fe87aaa9e01095a869aa04ee6af8c568216f0293 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 10 Sep 2008 08:41:15 +0000 Subject: added functions to create matrix full of one --- src/matrixOperations/includes/eye.h | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'src/matrixOperations/includes/eye.h') diff --git a/src/matrixOperations/includes/eye.h b/src/matrixOperations/includes/eye.h index 4c7d4569..107074fb 100644 --- a/src/matrixOperations/includes/eye.h +++ b/src/matrixOperations/includes/eye.h @@ -16,12 +16,21 @@ #include "floatComplex.h" #include "doubleComplex.h" +/* +** \brief create a float Eye matrix +*/ void seyea(float* in, int _iRows, int _iCols); - +/* +** \brief create a Double Eye matrix +*/ void deyea(double* in, int _iRows, int _iCols); - +/* +** \brief create a float complex Eye matrix +*/ void ceyea(floatComplex* in, int _iRows, int _iCols); - +/* +** \brief create a Double complex Eye matrix +*/ void zeyea(doubleComplex* in, int _iRows, int _iCols); -- cgit