diff options
author | jofret | 2008-05-27 13:10:46 +0000 |
---|---|---|
committer | jofret | 2008-05-27 13:10:46 +0000 |
commit | ee2741ddd49f06784e5fd80d04121655e6160d30 (patch) | |
tree | 69de1c2946f9fb61a5e2f6a835bbdb07444ffb54 /src/elementaryFunctions/sqrt/zsqrta.c | |
parent | c6a864563a327f505908d680a3c54ef6d38e4591 (diff) | |
download | scilab2c-ee2741ddd49f06784e5fd80d04121655e6160d30.tar.gz scilab2c-ee2741ddd49f06784e5fd80d04121655e6160d30.tar.bz2 scilab2c-ee2741ddd49f06784e5fd80d04121655e6160d30.zip |
* Add Scilab square root algorithm.
* Need some further testing
Diffstat (limited to 'src/elementaryFunctions/sqrt/zsqrta.c')
-rw-r--r-- | src/elementaryFunctions/sqrt/zsqrta.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/elementaryFunctions/sqrt/zsqrta.c b/src/elementaryFunctions/sqrt/zsqrta.c index 92e6fb1c..b6472951 100644 --- a/src/elementaryFunctions/sqrt/zsqrta.c +++ b/src/elementaryFunctions/sqrt/zsqrta.c @@ -1,14 +1,14 @@ /* -** -*- C -*- -** -** zsqrta.c -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Fri Sep 7 11:41:40 2007 bruno -** Last update Mon Oct 22 09:49:12 2007 bruno -** -** Copyright INRIA 2007 -*/ + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007-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 "sqrt.h" |