diff options
Diffstat (limited to 'src/elementaryFunctions/atanh/catanhs.c')
-rw-r--r-- | src/elementaryFunctions/atanh/catanhs.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/elementaryFunctions/atanh/catanhs.c b/src/elementaryFunctions/atanh/catanhs.c new file mode 100644 index 00000000..52f2d589 --- /dev/null +++ b/src/elementaryFunctions/atanh/catanhs.c @@ -0,0 +1,22 @@ +/* +** -*- C -*- +** +** catanhs.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Thu Dec 7 12:04:28 2006 jofret +** Last update Thu Sep 6 15:12:27 2007 bruno +** +** Copyright INRIA 2006 +*/ + +#include "atanh.h" + +floatComplex catanhs(floatComplex z) { + + double out_real = 0; + double out_imag = 0; + /* FIXME : Let's code... */ + + return FloatComplex(out_real, out_imag); +} |