Here you can find the source of atan(Integer a)
Parameter | Description |
---|---|
a | the a |
public static double atan(Integer a)
//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); } }