Java atan atan(Number x)

Here you can find the source of atan(Number x)

Description

atan

License

Apache License

Declaration

public static double atan(Number x) 

Method Source Code

//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
}

Related

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