Big Float.Asinh Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Asinh( | Returns the inverse hyperbolic sine of a number. |
Asinh( | Returns the inverse hyperbolic sine of a number with the specified accuracy. |
Asinh( | Returns the inverse hyperbolic sine of a number with the specified accuracy. |
Asinh(BigFloat)
Returns the inverse hyperbolic sine of a number.
public static BigFloat Asinh(
BigFloat value
)
Parameters
Return Value
BigFloatThe inverse hyperbolic sine of value.
Implements
IHyperbolicFunctions<TSelf>.Asinh(TSelf)Remarks
The result has the same relative accuracy as value. Significant round-off error may occur for values close to 1 in absolute value.
Exceptions
Argument | value is null. |
Asinh(BigFloat, AccuracyGoal)
Returns the inverse hyperbolic sine of a number with the specified accuracy.
public static BigFloat Asinh(
BigFloat value,
AccuracyGoal accuracyGoal
)
Parameters
- value BigFloat
- A BigFloat value.
- accuracyGoal AccuracyGoal
- An AccuracyGoal value that specifies the desired accuracy of the result.
Return Value
BigFloatThe inverse hyperbolic sine of value with an accuracy within accuracyGoal.
Exceptions
Argument | value is null. |
Asinh(BigFloat, AccuracyGoal, RoundingMode)
Returns the inverse hyperbolic sine of a number with the specified accuracy.
public static BigFloat Asinh(
BigFloat value,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
Parameters
- value BigFloat
- A BigFloat value.
- accuracyGoal AccuracyGoal
- An AccuracyGoal value that specifies the desired accuracy of the result.
- roundingMode RoundingMode
- A RoundingMode value that specifies how the result should be rounded.
Return Value
BigFloatThe inverse hyperbolic sine of value with an accuracy within accuracyGoal.
Exceptions
Argument | value is null. |