COSH (Hyperbolic Cosine)
The COSH function returns the hyperbolic cosine of an expression or value.
Syntax
COSH ( expression )
The example uses COSH to calculate the hyperbolic cosine of a voltage input and store the result in the Ans variable.
Public Volt1,
Ans 'Declare variables.
BeginProg
Scan (1,Sec,3,0)
Ans = COSH( Volt1 )
NextScan
EndProg
Remarks
The COSH function takes a value and returns the hyperbolic cosine for that value.