From 28b5eadf39e5c0582c5e57f1168834086139da47 Mon Sep 17 00:00:00 2001 From: Khaled Date: Sun, 4 Feb 2024 20:54:09 +0100 Subject: [PATCH] arcCosine Funktion header --- src/c/funktionen.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/c/funktionen.h b/src/c/funktionen.h index 28d875e..02a0618 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -47,4 +47,7 @@ float tangent(float x); // Function to calculate the arc sine of a value and return the result in radians float arcSine(float x); +// Function to calculate the arc cosine of a value and return the result in radians +float arcCosine(float x); + #endif \ No newline at end of file