diff options
Diffstat (limited to 'src/elementaryFunctions/exp/zexps.c')
-rw-r--r-- | src/elementaryFunctions/exp/zexps.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/elementaryFunctions/exp/zexps.c b/src/elementaryFunctions/exp/zexps.c new file mode 100644 index 00000000..5ee39ac9 --- /dev/null +++ b/src/elementaryFunctions/exp/zexps.c @@ -0,0 +1,18 @@ +/* +** -*- C -*- +** +** zexps.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Thu Dec 7 12:05:48 2006 jofret +** Last update Wed Jan 31 11:13:19 2007 jofret +** +** Copyright INRIA 2006 +*/ + +#include "doubleComplex.h" + +doubleComplex zexps(doubleComplex z) { + /* FIXME: Dummy... */ + return (DoubleComplex(0,1)); +} |