CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Maths

  1. #1
    Join Date
    Mar 2000
    Location
    canada
    Posts
    60

    Maths

    Hi, i want to determine the cosinus of one angle,
    would u please say me how to do it.

    Thanks in advance

    "the opposition of the opposites is the engine of becoming"

  2. #2
    Join Date
    Jul 1999
    Posts
    84

    Re: Maths

    Hello,
    Cos(angle in degrees)



    Thanks
    Harini

  3. #3
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: Maths

    Public Function CosH(ByVal Number As Double) As Double
    CosH = (Exp(Number) + Exp(-Number)) / 2
    End Function


    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured