Browse Source

arcTangent Funktion

remotes/origin/Khaled
Khaled 11 months ago
parent
commit
45bd020c51
  1. 5
      src/c/funktionen.c

5
src/c/funktionen.c

@ -117,3 +117,8 @@ float arcCosine(float x) {
} }
} }
// Function to calculate the arc tangent of a value and return the result in radians
float arcTangent(float x) {
return atan(x);
}
Loading…
Cancel
Save