Sinus and cosinus functions for C++

Discussion in 'Computer Science & Culture' started by Loco, Jun 12, 2003.

Thread Status:
Not open for further replies.
  1. Loco Registered Member

    Messages:
    21
    Does anyone know if there excist any header files for C++ with a sinus and/or cosinus calculator. Because I can't seem to find out how to calculate sinus and cosinus with C++.
    Thank you in advance.

    Andreas
     
  2. Google AdSense Guest Advertisement



    to hide all adverts.
  3. James R Just this guy, you know? Staff Member

    Messages:
    39,426
    How about math.h
    ?
     
  4. Google AdSense Guest Advertisement



    to hide all adverts.
  5. testify Look, a puppy! Registered Senior Member

    Messages:
    508
  6. Google AdSense Guest Advertisement



    to hide all adverts.
  7. AntonK Technomage Registered Senior Member

    Messages:
    1,083
    Try not to read the MSDN pages too much, they often differ from the ANSI standards in some important places.

    -AntonK
     
  8. testify Look, a puppy! Registered Senior Member

    Messages:
    508
    So where would be a good idea to get C++ functionality ifnormation?
     
  9. AntonK Technomage Registered Senior Member

    Messages:
    1,083
  10. Loco Registered Member

    Messages:
    21
    I appriciate your help.

    Andreas
     
  11. AntonK Technomage Registered Senior Member

    Messages:
    1,083
    No problem. By sticking to the cpp reference your code will be easier to port to other systems than if you use any proprietary standards.

    Most of the software I write will compile WITHOUT CHANGING on both Windows and Linux (and with some tweaking, other systems).

    -AntonK
     
  12. testify Look, a puppy! Registered Senior Member

    Messages:
    508
    Cool, thanks Anton.
     
Thread Status:
Not open for further replies.

Share This Page