diff options
author | jofret | 2007-01-19 14:25:46 +0000 |
---|---|---|
committer | jofret | 2007-01-19 14:25:46 +0000 |
commit | c24d5795ea30345dee4cb5f308de7021ba0ef00b (patch) | |
tree | 6e4dba02fe462d6273586ebd37875f26dbad45bf /src/elementaryFunctions/sinh/csinhs.c | |
parent | 6bc12ca25073f62907a115793b1c29cd8af155c3 (diff) | |
download | scilab2c-c24d5795ea30345dee4cb5f308de7021ba0ef00b.tar.gz scilab2c-c24d5795ea30345dee4cb5f308de7021ba0ef00b.tar.bz2 scilab2c-c24d5795ea30345dee4cb5f308de7021ba0ef00b.zip |
Adding Hyperbolic Cosine and Sine functions
Diffstat (limited to 'src/elementaryFunctions/sinh/csinhs.c')
-rw-r--r-- | src/elementaryFunctions/sinh/csinhs.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/elementaryFunctions/sinh/csinhs.c b/src/elementaryFunctions/sinh/csinhs.c new file mode 100644 index 00000000..6bac5cb3 --- /dev/null +++ b/src/elementaryFunctions/sinh/csinhs.c @@ -0,0 +1,23 @@ +/* +** -*- C -*- +** +** csinhs.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Fri Dec 8 12:04:39 2006 jofret +** Last update Fri Jan 19 15:20:48 2007 jofret +** +** Copyright INRIA 2006 +*/ + +#ifndef STDC99 +#include "floatComplex.h" +#else +#include <complex.h> +typedef float complex floatComplex; +#endif + +floatComplex csinhs(floatComplex z) { + /* FIXME: Dummy... */ + return z; +} |