Results 1 to 3 of 3

Thread: arcsin function

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2001
    Location
    Minnesota
    Posts
    86

    arcsin function

    How do I do the formula

    B= 180-arcsin((Ri-Cl/Re)

  2. #2
    Fanatic Member
    Join Date
    Sep 2000
    Location
    UK.
    Posts
    728

    Smile Info.

    Try this...
    B = 180 - arcsin((Ri-Cl/Re)

    Derived math function for Arcsin...
    Arcsin(X) = Atn(X / Sqr(-X * X + 1))

    Substituting for x, we get.
    B = 180 - Atn((Ri-Cl/Re) / Sqr(-(Ri-Cl/Re) * (Ri-Cl/Re) + 1))
    Hope this helps

    Laterz
    Digital-X-Treme
    Contact me on MSN Messenger: [email protected]

    [VBCODE]Debug.Print Round(((1097) - ((55 ^ 5 + 311 ^ 3 - 11 ^ 3) _
    / (68 ^ 5))) ^ (1 / 7), 13)[/VBCODE]

  3. #3
    Addicted Member Dim A's Avatar
    Join Date
    Jul 2000
    Posts
    201
    Code:
    Public Function arcSin(x As Double) As Double
        arcSin = Atn(x / Sqr(-x * x + 1))
    End Function
    Try something like this, but don't forget to test for acceptable values. All the degree measures are in radians.

    - Dim A

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