From e55a7044b98b7bb3612f65368aaa5ce7dcad8e20 Mon Sep 17 00:00:00 2001 From: Khaled Date: Sun, 4 Feb 2024 20:44:06 +0100 Subject: [PATCH] arcSine --- src/c/funktionen.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/c/funktionen.h b/src/c/funktionen.h index 6c17885..28d875e 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -44,5 +44,7 @@ float cosine(float x); // Function to calculate the tangent of an angle in radians float tangent(float x); +// Function to calculate the arc sine of a value and return the result in radians +float arcSine(float x); #endif \ No newline at end of file