Java sin sin(Short a)

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

Description

Sin.

License

Open Source License

Parameter

Parameter Description
a the a

Return

the double

Declaration

public static double sin(Short a) 

Method Source Code

//package com.java2s;

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

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

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

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

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

Related

  1. sin(int angle)
  2. sin(int angle)
  3. sin(int f)
  4. sin(int i)
  5. sin(Number x)
  6. sin5(float x)
  7. sin_core(double x)
  8. sin_v2(double x)
  9. sind(double degreeAngle)