diff options
author | jofret | 2007-01-05 15:29:03 +0000 |
---|---|---|
committer | jofret | 2007-01-05 15:29:03 +0000 |
commit | 840757ed3de8916bef4636e8011e4597733e2e92 (patch) | |
tree | 08668917029b233d1ef7deadb787082f497ba4a6 /src/elementaryFunctions/acos/cacoss.c | |
parent | 06cff68b037ef9a3b9b78a40cd15e5bccfbe269d (diff) | |
download | scilab2c-840757ed3de8916bef4636e8011e4597733e2e92.tar.gz scilab2c-840757ed3de8916bef4636e8011e4597733e2e92.tar.bz2 scilab2c-840757ed3de8916bef4636e8011e4597733e2e92.zip |
ArcCosine and ArcSine functions in basic cases.
Diffstat (limited to 'src/elementaryFunctions/acos/cacoss.c')
-rw-r--r-- | src/elementaryFunctions/acos/cacoss.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/elementaryFunctions/acos/cacoss.c b/src/elementaryFunctions/acos/cacoss.c new file mode 100644 index 00000000..480b41e6 --- /dev/null +++ b/src/elementaryFunctions/acos/cacoss.c @@ -0,0 +1,23 @@ +/* +** -*- C -*- +** +** cacoss.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Fri Jan 5 11:29:45 2007 jofret +** Last update Fri Jan 5 11:29:55 2007 jofret +** +** Copyright INRIA 2007 +*/ + +#ifndef STDC99 +#include "floatComplex.h" +#else +#include <complex.h> +typedef float complex floatComplex; +#endif + +floatComplex cacoss(floatComplex z) { + /* FIXME: Dummy... */ + return z; +} |