From 60dc24077bf42ddf1b8973915350dfabdf5b040a Mon Sep 17 00:00:00 2001 From: Brijeshcr Date: Tue, 8 Aug 2017 18:55:55 +0530 Subject: Added Sind and Tand --- 2.3-1/src/c/elementaryFunctions/tand/dtanda.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 2.3-1/src/c/elementaryFunctions/tand/dtanda.c (limited to '2.3-1/src/c/elementaryFunctions/tand/dtanda.c') diff --git a/2.3-1/src/c/elementaryFunctions/tand/dtanda.c b/2.3-1/src/c/elementaryFunctions/tand/dtanda.c new file mode 100644 index 00000000..e5d56a87 --- /dev/null +++ b/2.3-1/src/c/elementaryFunctions/tand/dtanda.c @@ -0,0 +1,19 @@ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + 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 + Author: Brijesh Gupta C R + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ +#include "tand.h" + +void dtanda(double* x, int size, double* y) { + int i = 0; + for (i = 0; i < size; ++i) { + y[i] = dtands(x[i]); + } +} -- cgit