Java tan tan(Number x)

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

Description

tan

License

Apache License

Declaration

public static double tan(Number x) 

Method Source Code

//package com.java2s;
// Licensed under the Apache License, Version 2.0 (the "License");

public class Main {
    public static double tan(Number x) {
        return Math.tan(x.doubleValue());
    }//  w  ww.ja v  a 2s  .  c o  m
}

Related

  1. tan(float angle)
  2. tan(float angle)
  3. tan(float angle)
  4. tan(float f)
  5. tan(int f)
  6. tan(Short a)
  7. tanD(double arg)
  8. tand(double x)
  9. tanf(float f)