Java tan tan(Short a)

Here you can find the source of tan(Short a)

Description

Tan.

License

Open Source License

Parameter

Parameter Description
a the a

Return

the double

Declaration

public static double tan(Short a) 

Method Source Code

//package com.java2s;

public class Main {
    /**/*from  w  w w. j a  v  a 2s. c o m*/
     * Tan.
     *
     * @param a the a
     * @return the double
     */
    public static double tan(Short a) {
        return Math.tan(a.doubleValue());
    }

    /**
     * Tan.
     *
     * @param a the a
     * @return the double
     */
    public static double tan(Integer a) {
        return Math.tan(a.doubleValue());
    }

    /**
     * Tan.
     *
     * @param a the a
     * @return the double
     */
    public static double tan(Float a) {
        return Math.tan(a.doubleValue());
    }

    /**
     * Tan.
     *
     * @param a the a
     * @return the double
     */
    public static double tan(Long a) {
        return Math.tan(a.doubleValue());
    }

    /**
     * Tan.
     *
     * @param a the a
     * @return the double
     */
    public static double tan(Double a) {
        return Math.tan(a);
    }
}

Related

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