Method AtanPi
AtanPi(BigRational, Int32)
Computes the arc-tangent of a value and divides the result by pi.
Declaration
public static BigRational AtanPi(BigRational x, int digits)
Parameters
| Type | Name | Description |
|---|---|---|
| BigRational | x | The value whose arc-tangent is to be computed. |
| System.Int32 | digits | The maximum number of fractional decimal digits in the return value.digits |
Returns
| Type | Description |
|---|---|
| BigRational | The arc-tangent of |
Remarks
This computes arctan(x) / π in the interval [-0.5, +0.5].
The desired precision can preset by MaxDigits
AtanPi(BigRational)
Computes the arc-tangent of a value and divides the result by pi.
Declaration
public static BigRational AtanPi(BigRational x)
Parameters
| Type | Name | Description |
|---|---|---|
| BigRational | x | The value whose arc-tangent is to be computed. |
Returns
| Type | Description |
|---|---|
| BigRational | The arc-tangent of |
Remarks
This computes arctan(x) / π in the interval [-0.5, +0.5].
Part of the new NET 7 number type system see System.Numerics.ITrigonometricFunctions`1.AtanPi(`0).
The desired precision can preset by MaxDigits