CosH
Result# = CosH(Angle#)
 
Parameters:

    Angle# = The angle (in degrees)
Returns:

    Result#
 

The CosH function returns the hyperbolic cosine of a given angle (in degrees).






Mini Tutorial:


  
; Display the Hyperbolic 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 Hyperbolic Cosine, Arc Sine and Arc Tangent of different values
  Print CosH(180.0)
  Print SinH(90.0)
  Print TanH(45.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
  11.5919
  2.3013
  0.655794
  

 
Related Info: ASin | ATan | Cos | Sin | SinH | Tan | TanH :
 


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