Big Float.Tan 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
Tan( | Returns the tangent of an angle. |
Tan( | Returns the tangent of an angle with the specified accuracy. |
Tan( | Returns the tangent of an angle with the specified accuracy. |
Tan(BigFloat)
Returns the tangent of an angle.
public static BigFloat Tan(
BigFloat angle
)
Parameters
Return Value
BigFloatThe tangent of angle.
Implements
ITrigonometricFunctions<TSelf>.Tan(TSelf)Remarks
The result has the same relative accuracy as the absolute accuracy of angle.
Exceptions
Argument | angle is null. |
Tan(BigFloat, AccuracyGoal)
Returns the tangent of an angle with the specified accuracy.
public static BigFloat Tan(
BigFloat angle,
AccuracyGoal accuracyGoal
)
Parameters
- angle BigFloat
- A BigFloat value that specifies the angle in radians.
- accuracyGoal AccuracyGoal
- An AccuracyGoal value that specifies the desired accuracy of the result.
Return Value
BigFloatThe tangent of angle with an accuracy within accuracyGoal.
Exceptions
Argument | angle is null. |
Tan(BigFloat, AccuracyGoal, RoundingMode)
Returns the tangent of an angle with the specified accuracy.
public static BigFloat Tan(
BigFloat angle,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
Parameters
- angle BigFloat
- A BigFloat value that specifies the angle in radians.
- 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 tangent of angle with an accuracy within accuracyGoal.
Exceptions
Argument | angle is null. |