diff options
author | torset | 2009-01-20 10:53:46 +0000 |
---|---|---|
committer | torset | 2009-01-20 10:53:46 +0000 |
commit | e329ccf8391f7ce500f66d495da964fb518a7067 (patch) | |
tree | 712a420c3e6b3c0f09f8432aeb7d62cc668eeba9 /src/matrixOperations/addition/saddma.c | |
parent | b229bf5b69c14b0fae11389433cc2bff3a683832 (diff) | |
download | scilab2c-e329ccf8391f7ce500f66d495da964fb518a7067.tar.gz scilab2c-e329ccf8391f7ce500f66d495da964fb518a7067.tar.bz2 scilab2c-e329ccf8391f7ce500f66d495da964fb518a7067.zip |
rm addm and diffm cause they are equal to add and diff, up expm cause it used addm and diffm and now is using add and diff
Diffstat (limited to 'src/matrixOperations/addition/saddma.c')
-rw-r--r-- | src/matrixOperations/addition/saddma.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/matrixOperations/addition/saddma.c b/src/matrixOperations/addition/saddma.c deleted file mode 100644 index 15a4f342..00000000 --- a/src/matrixOperations/addition/saddma.c +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * 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 - * - */ - -#include "matrixAddition.h" - -/* -** \brief Compute an addition element ways for floats. -** \param in1 : input array. -** \param size1 : size of in1 array. -** \param in2 : input arry. -** \param size2 : size of in2 array. -** \param out : array that contains the addition in1 + in2. -*/ -void saddma(float *in1, int size1, - float *in2, int size2, - float *out) -{ - int i = 0; - - for(i = 0 ; i < size1 && i < size2 ; ++i) - { - out[i] = in1[i] + in2[i]; - } -} |