How is the function "sin" realized?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lego13
    New Member
    • May 2013
    • 3

    How is the function "sin" realized?

    Hi.
    Anybody can explain or show how is the function "sin" (or "sinf", "sinl") realized in C.
    Intuition suggests that it should be somewhere in the math.h but I did not see anything there
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    They're there .

    Comment

    • muthuct8
      New Member
      • Jul 2013
      • 5

      #3
      first we find the radians value, and radians value put on the sin function
      example:
      x=radians(angle ) // x= radians(0 degree)
      y=sin(x) // y=sin(radians)

      Comment

      Working...