TANH

TANH(number)

Returns the hyperbolic tangent of a number.

numberThe number which you want the hyperbolic tangent of.

REMARKS
* For an illustrated example refer to the [[Hyperbolic Functions]] page.
* The inverse of this function is the ATANH function.
* The "number" is the angle in radians.
* If "number" is not numeric, then #VALUE! is returned.
* If your argument is in degrees, multiply it by PI/180 to convert it to radians.
* If you want the result to be in degrees, multiply the result by 180/PI.
* You can use the ATANH function to return the inverse hyperbolic tangent.
* You can use the COTH function to return the reciprocal hyperbolic tangent (1/TANH).
* You can use the SINH function to return the hyperbolic sine.
* You can use the COSH function to return the hyperbolic cosine.
* You can use the DEGREES function to convert from radians to degrees.
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 A
1=TANH(0.5) = 0.462
2=TANH(-2) = -0.964
3=TANH(0) = 0
4=TANH(ATANH(0.5)) = 0.5
5=TANH("some text") = #VALUE!


© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top