|
||||||||||
|
|
||||||||||
| Other Library Functions | ||||||||||
| function | cosh |
Available in:
Enterprise |
|
Library: omtrig - trigonometry
Include: omtrig.xin |
Return type: OMX Returns: The hyperbolic cosine of a floating point number. |
define external float function
cosh value float x
Use cosh to calculate the hyperbolic cosine of a floating point number. This trigonometric function works the same way as its equivalent in the C math library.
Out-of-range values return infinity, "+ INF".
Example:
include "omtrig.xin"
process
local float x initial {45}
local float cosh-value
set cosh-value to cosh x
output "Hyperbolic cosine of x, where x = "
|| "d" % x
|| ", is "
|| "d" % cosh-value
|| "%n"
; Output: "Hyperbolic cosine of x, where x = 45, is 17467135528742610000"
|
Other Library Functions acos asin atan atan2 cos cosh hypot sin sinh tan tanh |
| ---- |