From 8a7e8359a5691bbafe639958e36720aab724826f Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 8 Jul 2008 10:03:44 +0000 Subject: added atan2 functions --- src/elementaryFunctions/atan2/datan2s.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/elementaryFunctions/atan2/datan2s.c (limited to 'src/elementaryFunctions/atan2/datan2s.c') diff --git a/src/elementaryFunctions/atan2/datan2s.c b/src/elementaryFunctions/atan2/datan2s.c new file mode 100644 index 00000000..f6c8637c --- /dev/null +++ b/src/elementaryFunctions/atan2/datan2s.c @@ -0,0 +1,18 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Allan SIMON + * + * 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 "atan2.h" + + +double datan2s ( double x , double y ) { + return atan2 ( x, y ) ; +} -- cgit