diff options
Diffstat (limited to 'src/elementaryFunctions/exp/zexpa.c')
-rw-r--r-- | src/elementaryFunctions/exp/zexpa.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/elementaryFunctions/exp/zexpa.c b/src/elementaryFunctions/exp/zexpa.c new file mode 100644 index 00000000..a22f381c --- /dev/null +++ b/src/elementaryFunctions/exp/zexpa.c @@ -0,0 +1,22 @@ +/* +** -*- C -*- +** +** zexpa.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Thu Dec 7 16:12:02 2006 jofret +** Last update Wed Jan 31 11:13:29 2007 jofret +** +** Copyright INRIA 2006 +*/ + +#include "doubleComplex.h" + +doubleComplex zexps(doubleComplex); + +void zexpa(doubleComplex* x, int strideX, doubleComplex* y, int strideY, int size) { + int i = 0; + for (i = 0; i < size; ++i) { + y[i] = zexps(x[i]); + } +} |