summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/log/dloga.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/log/dloga.c')
-rw-r--r--src/elementaryFunctions/log/dloga.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/elementaryFunctions/log/dloga.c b/src/elementaryFunctions/log/dloga.c
index e69de29b..dbc2d49d 100644
--- a/src/elementaryFunctions/log/dloga.c
+++ b/src/elementaryFunctions/log/dloga.c
@@ -0,0 +1,20 @@
+/*
+** -*- C -*-
+**
+** dloga.c
+** Made by Bruno JOFRET <bruno.jofret@inria.fr>
+**
+** Started on Fri Sep 7 10:31:35 2007 bruno
+** Last update Fri Sep 7 10:32:23 2007 bruno
+**
+** Copyright INRIA 2007
+*/
+
+#include "log.h"
+
+void dloga(double* x, double* y, int size) {
+ int i = 0;
+ for (i = 0; i < size; ++i) {
+ y[i] = slogs(x[i]);
+ }
+}