From 4259ce63e80a8d965c94b5dee58e307cd155c95a Mon Sep 17 00:00:00 2001 From: Khaled Date: Sun, 4 Feb 2024 21:00:29 +0100 Subject: [PATCH] arcTangent 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 02a0618..b6e14ed 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -50,4 +50,7 @@ float arcSine(float x); // Function to calculate the arc cosine of a value and return the result in radians float arcCosine(float x); +// Function to calculate the arc tangent of a value and return the result in radians +float arcTangent(float x); + #endif \ No newline at end of file