diff options
author | simon | 2008-09-10 08:41:15 +0000 |
---|---|---|
committer | simon | 2008-09-10 08:41:15 +0000 |
commit | fe87aaa9e01095a869aa04ee6af8c568216f0293 (patch) | |
tree | 882eea926944c2b4e931a1a61997176268d6ff10 /src/matrixOperations/includes/eye.h | |
parent | b54a0679d78d899af6609541aa6130c8789d54d4 (diff) | |
download | scilab2c-fe87aaa9e01095a869aa04ee6af8c568216f0293.tar.gz scilab2c-fe87aaa9e01095a869aa04ee6af8c568216f0293.tar.bz2 scilab2c-fe87aaa9e01095a869aa04ee6af8c568216f0293.zip |
added functions to create matrix full of one
Diffstat (limited to 'src/matrixOperations/includes/eye.h')
-rw-r--r-- | src/matrixOperations/includes/eye.h | 15 |
1 files changed, 12 insertions, 3 deletions
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); |