From a6e5fe5da63ed2dd8db74504075abacd2d557754 Mon Sep 17 00:00:00 2001 From: jofret Date: Tue, 11 Sep 2007 16:02:09 +0000 Subject: End of prototyping all elementary functions. Just need some code (wait for an internship). --- src/elementaryFunctions/exp10/zexp10a.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/elementaryFunctions/exp10/zexp10a.c (limited to 'src/elementaryFunctions/exp10/zexp10a.c') diff --git a/src/elementaryFunctions/exp10/zexp10a.c b/src/elementaryFunctions/exp10/zexp10a.c new file mode 100644 index 00000000..7f2ae965 --- /dev/null +++ b/src/elementaryFunctions/exp10/zexp10a.c @@ -0,0 +1,20 @@ +/* +** -*- C -*- +** +** zexp10a.c +** Made by Bruno JOFRET +** +** Started on Thu Dec 7 16:12:02 2006 jofret +** Last update Thu Sep 6 16:56:32 2007 bruno +** +** Copyright INRIA 2006 +*/ + +#include "exp10.h" + +void zexp10a(doubleComplex* x, doubleComplex* y, int size) { + int i = 0; + for (i = 0; i < size; ++i) { + y[i] = zexp10s(x[i]); + } +} -- cgit