diff options
author | jofret | 2007-09-11 16:02:09 +0000 |
---|---|---|
committer | jofret | 2007-09-11 16:02:09 +0000 |
commit | a6e5fe5da63ed2dd8db74504075abacd2d557754 (patch) | |
tree | 6b42401bfecf6fb89a170862b184de119eebc1ee /src/elementaryFunctions/acosh/cacosha.c | |
parent | 110650613fca7f68c4e683c7fb1b4cc0eb9279ee (diff) | |
download | scilab2c-a6e5fe5da63ed2dd8db74504075abacd2d557754.tar.gz scilab2c-a6e5fe5da63ed2dd8db74504075abacd2d557754.tar.bz2 scilab2c-a6e5fe5da63ed2dd8db74504075abacd2d557754.zip |
End of prototyping all elementary functions.
Just need some code (wait for an internship).
Diffstat (limited to 'src/elementaryFunctions/acosh/cacosha.c')
-rw-r--r-- | src/elementaryFunctions/acosh/cacosha.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/elementaryFunctions/acosh/cacosha.c b/src/elementaryFunctions/acosh/cacosha.c new file mode 100644 index 00000000..2191ab31 --- /dev/null +++ b/src/elementaryFunctions/acosh/cacosha.c @@ -0,0 +1,20 @@ +/* +** -*- C -*- +** +** cacosha.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Fri Jan 5 10:23:49 2007 jofret +** Last update Thu Sep 6 10:44:18 2007 bruno +** +** Copyright INRIA 2007 +*/ + +#include "acosh.h" + +void cacosha(floatComplex* x, floatComplex* y, int size) { + int i = 0; + for (i = 0; i < size; ++i) { + y[i] = cacoshs(x[i]); + } +} |