Java sinh sinh(Double x)

Here you can find the source of sinh(Double x)

Description

Sinh.

License

Open Source License

Parameter

Parameter Description
x the x

Return

the double

Declaration

public static double sinh(Double x) 

Method Source Code

//package com.java2s;

public class Main {
    /**/*  w  w  w  .  java2 s .co m*/
     * Sinh.
     *
     * @param x the x
     * @return the double
     */
    public static double sinh(Double x) {
        return Math.sinh(x);
    }
}

Related

  1. sinh(double paramDouble)
  2. sinh(double t)
  3. sinh(double x)
  4. sinh(final double x)