About 34,000 results
Open links in new tab
  1. Calculate atan2 without std functions or C99 - Stack Overflow

    Aug 13, 2012 · Convert arctan2 to arctan using this formula. And you can then calculate arctan using this infinite series. If you sum sufficient number of terms of this infinite series, you will get …

  2. algorithm - How is arctan implemented? - Stack Overflow

    Apr 13, 2014 · The arctan implementation should be monotonic; that is, if x < y, then arctan(x) <= arctan(y). The arctan implementation should always return an answer within 1 ulp of the right …

  3. Calculating the value of arctan (x) in C++ - Stack Overflow

    May 3, 2013 · I can find easily the value of arctan (x) by functions from standard library . What procedure is followed there to find value ??

  4. How do I calculate the yaw, pitch, and roll of a point in 3D?

    Oct 20, 2019 · Instead of using arctan to solve the equation though, we want to use atan2 since it'll handle all the different cases of x and y for us. So we have: heading = atan2(redOpposite, …

  5. Calculate direction angle from two vectors? - Stack Overflow

    Jul 17, 2015 · So theta = arctan[(x1 - x)/(y1 - y)] Where arctan means inverse tangent. Not to be confused with the reciprocal of the tangent, which many people do, since they're both …

  6. Using atan2 to find angle between two vectors - Stack Overflow

    Jan 31, 2014 · This Stack Overflow post explains how to use atan2 to calculate the angle between two vectors in programming.

  7. math - function to calculate ARC tangent in C# - Stack Overflow

    Jul 3, 2021 · function to calculate ARC tangent in C# Asked 4 years, 5 months ago Modified 4 years, 5 months ago Viewed 2k times

  8. Phase calculated by np.angle python different from value obtained …

    Jun 7, 2023 · Phase calculated by np.angle python different from value obtained by calculating arctan of imaginary part divided by real part of the complex number Asked 2 years, 6 months …

  9. using a while loop to calculate arctan taylor series in python

    Apr 16, 2023 · using a while loop to calculate arctan taylor series in python Asked 2 years, 7 months ago Modified 2 years, 7 months ago Viewed 377 times

  10. How can I calculate tangent with degrees instead of radians?

    I am trying to make a basic tool to make my everyday easier, solving some assignments for me. Unfortunately, I can't figure out how to make it calculate in degrees when tangent is being …