ACos
Degrees# = ACos(Value#)
 
Parameters:

    Value# = Value between -1.0 and 1.0
Returns:

    Degrees#
 

      The ACos (Arc Cosine) function is the inverse of the Cos function.




Mini Tutorial:



  
; Display the Cosine, Sine and Tangent of different angles
  Print Cos(180)
  Print Sin(90)
  Print Tan(45)
  
; Display the Arc Cosine, Arc Sine and Arc Tangent of different values
  Print ACos(-1.0)
  Print ASin(1.0)
  Print ATan(1.0)
  
; Display the Screen and wait for the user to press a key
  Sync
  WaitKey
  



This example would output.

  
  -1.0
  1.0
  1.0
  180.0
  90.0
  45.0
  




 
Related Info: ASin | ATan | Cos | CosH | CosNewValue | CosRadius | Sin | SinH | SinNewValue | SinRadius | Tan | TanH :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com