Here you can find the source of atan(Number x)
public static double atan(Number x)
//package com.java2s; // Licensed under the Apache License, Version 2.0 (the "License"); public class Main { public static double atan(Number x) { return Math.atan(x.doubleValue()); }//from ww w . j av a 2 s . c o m }