Big Float.Acosh Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
Overload List
| Acosh( | Returns the inverse hyperbolic cosine of a number. |
| Acosh( | Returns the inverse hyperbolic cosine of a number with the specified accuracy. |
| Acosh( | Returns the inverse hyperbolic cosine of a number with the specified accuracy. |
Acosh(BigFloat)
Returns the inverse hyperbolic cosine of a number.
public static BigFloat Acosh(
BigFloat value
)Parameters
Return Value
BigFloatThe inverse hyperbolic cosine of value.
Implements
IHyperbolicFunctions<TSelf>.Acosh(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. |
Acosh(BigFloat, AccuracyGoal)
Returns the inverse hyperbolic cosine of a number with the specified accuracy.
public static BigFloat Acosh(
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 cosine of value with an accuracy within accuracyGoal.
Exceptions
| Argument | value is null. |
Acosh(BigFloat, AccuracyGoal, RoundingMode)
Returns the inverse hyperbolic cosine of a number with the specified accuracy.
public static BigFloat Acosh(
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 cosine of value with an accuracy within accuracyGoal.
Exceptions
| Argument | value is null. |