Java atan atan(Integer a)

Here you can find the source of atan(Integer a)

Description

Atan.

License

Open Source License

Parameter

Parameter Description
a the a

Return

the double

Declaration

public static double atan(Integer a) 

Method Source Code

//package com.java2s;

public class Main {
    /**/*ww  w . ja  v a2  s. c  o m*/
     * Atan.
     *
     * @param a the a
     * @return the double
     */
    public static double atan(Short a) {
        return Math.atan(a.doubleValue());
    }

    /**
     * Atan.
     *
     * @param a the a
     * @return the double
     */
    public static double atan(Integer a) {
        return Math.atan(a.doubleValue());
    }

    /**
     * Atan.
     *
     * @param a the a
     * @return the double
     */
    public static double atan(Float a) {
        return Math.atan(a.doubleValue());
    }

    /**
     * Atan.
     *
     * @param a the a
     * @return the double
     */
    public static double atan(Long a) {
        return Math.atan(a.doubleValue());
    }

    /**
     * Atan.
     *
     * @param a the a
     * @return the double
     */
    public static double atan(Double a) {
        return Math.atan(a);
    }
}

Related

  1. atan(double x)
  2. atan(float tan_value)
  3. atan(float value)
  4. atan(float x)
  5. atan(int f)
  6. atan(Number x)
  7. atan_66s(double x)
  8. atan_mag1(double x)
  9. atanAlternative(double y, double x)