summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/tan/stana.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/tan/stana.c')
-rw-r--r--src/elementaryFunctions/tan/stana.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/elementaryFunctions/tan/stana.c b/src/elementaryFunctions/tan/stana.c
new file mode 100644
index 00000000..44058c44
--- /dev/null
+++ b/src/elementaryFunctions/tan/stana.c
@@ -0,0 +1,20 @@
+/*
+** -*- C -*-
+**
+** stana.c
+** Made by Bruno JOFRET <bruno.jofret@inria.fr>
+**
+** Started on Thu Dec 7 16:03:27 2006 jofret
+** Last update Mon Jan 29 16:11:44 2007 jofret
+**
+** Copyright INRIA 2006
+*/
+
+float stans(float);
+
+void stana(float* x, int strideX, float* y, int strideY, int size) {
+ int i = 0;
+ for (i = 0; i < size; ++i) {
+ y[i] = stans(x[i]);
+ }
+}