aboutsummaryrefslogtreecommitdiff
path: root/tests/hyperbolic/src.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hyperbolic/src.c')
-rw-r--r--tests/hyperbolic/src.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/hyperbolic/src.c b/tests/hyperbolic/src.c
new file mode 100644
index 00000000..4644f2d3
--- /dev/null
+++ b/tests/hyperbolic/src.c
@@ -0,0 +1,17 @@
+#include <stdio.h>
+#include <math.h>
+
+int main() {
+ double i;
+ for (i = -10; i < 10; i += 0.125) {
+ printf("i: %g\n", i);
+ printf("sinh: %g\n", sinh(i));
+ printf("cosh: %g\n", cosh(i));
+ printf("tanh: %g\n", tanh(i));
+ printf("asinh: %g\n", asinh(i));
+ printf("acosh: %g\n", acosh(i));
+ printf("atanh: %g\n", atanh(i));
+ printf("\n");
+ }
+ return 0;
+}