Java tan tand(double x)

Here you can find the source of tand(double x)

Description

tand

License

Open Source License

Parameter

Parameter Description
x angle in degrees

Return

Tan()

Declaration

public static final double tand(double x) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    /**//from w  w w  . ja va2s  .  co m
     * @param x angle in degrees
     * @return Tan()
     */
    public static final double tand(double x) {
        return Math.tan(x * (Math.PI / 180.0));
    }
}

Related

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