Big Float.Cosh 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
Cosh( | Returns the hyperbolic cosine of a number. |
Cosh( | Returns the hyperbolic cosine of a number with the specified accuracy. |
Cosh( | Returns the hyperbolic cosine of a number with the specified accuracy. |
Cosh(BigFloat)
Returns the hyperbolic cosine of a number.
public static BigFloat Cosh(
BigFloat value
)
Parameters
Return Value
BigFloatThe hyperbolic cosine of value.
Implements
IHyperbolicFunctions<TSelf>.Cosh(TSelf)Remarks
The result has the same relative accuracy as value.
Exceptions
Argument | value is null. |
Cosh(BigFloat, AccuracyGoal)
Returns the hyperbolic cosine of a number with the specified accuracy.
public static BigFloat Cosh(
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 hyperbolic cosine of value with an accuracy within accuracyGoal.
Exceptions
Argument | value is null. |
Cosh(BigFloat, AccuracyGoal, RoundingMode)
Returns the hyperbolic cosine of a number with the specified accuracy.
public static BigFloat Cosh(
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 hyperbolic cosine of value with an accuracy within accuracyGoal.
Exceptions
Argument | value is null. |