WorksheetFunction.Atanh(Double) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the inverse hyperbolic tangent of a number. Number must be between -1 and 1 (excluding -1 and 1).
public:
double Atanh(double Arg1);
public double Atanh (double Arg1);
Public Function Atanh (Arg1 As Double) As Double
Parameters
- Arg1
- Double
Any real number between 1 and -1.
Returns
Remarks
The inverse hyperbolic tangent is the value whose hyperbolic tangent is Arg1, so Atanh(Tanh(number)) equals Arg1
.