diff options
author | jofret | 2007-08-30 06:50:38 +0000 |
---|---|---|
committer | jofret | 2007-08-30 06:50:38 +0000 |
commit | cf924d90c67324bf9b805768d54dc505a93c9e43 (patch) | |
tree | dd40eeb87a9561eeb66967e65fa94c34789b3166 /src/auxiliaryFunctions/pythag/dpythags.c | |
parent | 1374a55b159ad3f28396be147f3ed6482d72888b (diff) | |
download | scilab2c-cf924d90c67324bf9b805768d54dc505a93c9e43.tar.gz scilab2c-cf924d90c67324bf9b805768d54dc505a93c9e43.tar.bz2 scilab2c-cf924d90c67324bf9b805768d54dc505a93c9e43.zip |
Update pythag function
Diffstat (limited to 'src/auxiliaryFunctions/pythag/dpythags.c')
-rw-r--r-- | src/auxiliaryFunctions/pythag/dpythags.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/auxiliaryFunctions/pythag/dpythags.c b/src/auxiliaryFunctions/pythag/dpythags.c index 0b3eeb5f..a40fa7cd 100644 --- a/src/auxiliaryFunctions/pythag/dpythags.c +++ b/src/auxiliaryFunctions/pythag/dpythags.c @@ -5,13 +5,12 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Mon Apr 23 11:54:15 2007 jofret -** Last update Mon Apr 23 15:43:21 2007 jofret +** Last update Thu Aug 16 12:10:17 2007 bruno ** ** Copyright INRIA 2007 */ #include "pythag.h" -#include "sqrt.h" double dpythags(double x, double y) { return (dsqrts( (x*x) + (y*y) ) ); |