Tan
TanValue# = Tan(Angle#)
 
Parameters:

    Angle# = The Angle in degrees
Returns:

    TanValue# = The tangent of the selected angle
 

      The Tan function returns the tangent of an angle.



FACTS:


      * Angle should range between 0 and 360 degrees.



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: ATan | Cos | Sin | TanH :
 


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