Rate This Document
Findability
Accuracy
Completeness
Readability

atan

Compute the arc tangent of a real number.

Interface Definition

C interface:

float atanf(float x);

double atan(double x);

Fortran interface:

RES = ATANF(X)

RES = ATAN(X)

Parameters

Parameter

Type

Description

Input/Output

x

  • For atanf, x is of the single-precision floating-point type.
  • For atan, x is of the double-precision floating-point type.

Floating-point value of the input data

Input

Return Value

  1. The unique angle whose tangent value is x at (–π/2, π/2) is returned. The value range is (–π/2, +π/2).
  2. If the input is +0, the return value is +0.
  3. If the input is -0, the return value is -0.
  4. If the input is +∞, the return value is +π/2.
  5. If the input is -∞, the return value is -π/2.
  6. If the input is NaN, the return value is NaN.

Dependencies

C: "km.h"

Fortran: "km.f03"

Examples

C interface:

    double pi = acos(-1); 
    // typical usage 
    double a = pi/3, c = -3*pi/4, b = pi/2; 
    // speical handling 
    double d = +0.0, h = -0.0, e = INFINITY, f = -INFINITY, g = NAN; 
    // print result 
    printf("atan(pi/3) = %.15f\n", atan(a)); 
    printf("atan(-3*pi/4) = %.15f\n", atan(c)); 
    printf("atan(pi/2) = %.15f\n", atan(b)); 
    printf("atan(+0.0) = %+.15f\n", atan(d)); 
    printf("atan(-0.0) = %+.15f\n", atan(h)); 
    printf("atan(INFINITY) = %+.15f\n", atan(e)); 
    printf("atan(-INFINITY) = %+.15f\n", atan(f)); 
    printf("atan(NAN) = %.15f\n", atan(g)); 
    /* 
     *  atan(pi/3) = 0.808448792630022 
     *  atan(-3*pi/4) = -1.169422824815756 
     *  atan(pi/2) = 1.003884821853887 
     *  atan(+0.0) = +0.000000000000000 
     *  atan(-0.0) = -0.000000000000000 
     *  atan(INFINITY) = +1.570796326794897 
     *  atan(-INFINITY) = -1.570796326794897 
     *  atan(NAN) = nan 
     * 
     * */

Fortran interface:

    REAL(8) :: X = 0.0 
    PRINT*,  ATAN(X) 
    ! 
    ! OUTPUT 
    !     0.000000000000000 
    !