summaryrefslogtreecommitdiff
path: root/src/matrixOperations/addition/daddma.c
diff options
context:
space:
mode:
authortorset2009-01-20 10:53:46 +0000
committertorset2009-01-20 10:53:46 +0000
commite329ccf8391f7ce500f66d495da964fb518a7067 (patch)
tree712a420c3e6b3c0f09f8432aeb7d62cc668eeba9 /src/matrixOperations/addition/daddma.c
parentb229bf5b69c14b0fae11389433cc2bff3a683832 (diff)
downloadscilab2c-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/daddma.c')
-rw-r--r--src/matrixOperations/addition/daddma.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/matrixOperations/addition/daddma.c b/src/matrixOperations/addition/daddma.c
deleted file mode 100644
index 868a4988..00000000
--- a/src/matrixOperations/addition/daddma.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 double.
-** \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 daddma(double *in1, int size1,
- double *in2, int size2,
- double * out)
-{
- int i = 0;
-
- for(i = 0 ; i < size1 && i < size2 ; ++i)
- {
- out[i] = in1[i] + in2[i];
- }
-}