Difference between revisions of "SHIP:Sail:atanh"

From Serious Documentation
Jump to: navigation, search
Line 7: Line 7:
 
*[[SHIP:Sail:Functions|Sail Functions]]
 
*[[SHIP:Sail:Functions|Sail Functions]]
 
*[[SHIP:Sail:Numeric Functions|Sail Numeric Functions]]
 
*[[SHIP:Sail:Numeric Functions|Sail Numeric Functions]]
*[[SHIP:Sail:Trigonomic Functions|Sail Trigonomic Functions]]
+
*[[SHIP:Sail:Trigonometric Functions|Sail Trigonometric Functions]]
  
 
== Prototype ==
 
== Prototype ==
Line 41: Line 41:
 
|<code>{{SailFunc|atanh}}(0.707)</code> || 0.881160... ||
 
|<code>{{SailFunc|atanh}}(0.707)</code> || 0.881160... ||
 
|}
 
|}
 +
 +
[[Categories:Trigonometric Functions]]

Revision as of 15:18, 4 October 2016

Function Returns Introduced Description
atanh Float v5.1.0 Returns the arc hyperbolic tan of the given valueBadge SHIPv5.gif

See Also:

Prototype

Float atanh(Float value);

Parameters/Return Value

Parameter Data Type Description
value Float the value to take the arc hyperbolic tan of, in the range -1 < value < 1.
Return Float atanh(value)

Detailed Description

The atanh() function returns the arc hyperbolic tan of the supplied value</code>

Examples

Example Result Notes
atanh(-1); inf...
atanh(-0.5); -0.549306...
atanh(0.707) 0.881160...

Categories:Trigonometric Functions