BigFloat.Atan Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Atan(BigFloat) Returns the inverse tangent of a number.
Atan(BigFloat, AccuracyGoal) Returns the inverse tangent of a number with the specified accuracy.
Atan(BigFloat, AccuracyGoal, RoundingMode) Returns the inverse tangent of a number with the specified accuracy.

Atan(BigFloat)

Returns the inverse tangent of a number.
C#
public static BigFloat Atan(
	BigFloat value
)

Parameters

value  BigFloat
A BigFloat value.

Return Value

BigFloat
The inverse tangent of value.

Implements

ITrigonometricFunctions<TSelf>.Atan(TSelf)

Remarks

The result has the same relative accuracy as value.

Exceptions

ArgumentNullException

value is null.

Atan(BigFloat, AccuracyGoal)

Returns the inverse tangent of a number with the specified accuracy.
C#
public static BigFloat Atan(
	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

BigFloat
The inverse tangent of value with an accuracy within accuracyGoal.

Exceptions

ArgumentNullException

value is null.

Atan(BigFloat, AccuracyGoal, RoundingMode)

Returns the inverse tangent of a number with the specified accuracy.
C#
public static BigFloat Atan(
	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

BigFloat
The inverse tangent of value with an accuracy within accuracyGoal.

Exceptions

ArgumentNullException

value is null.

See Also