Here you can find the source of sinh(Double x)
Parameter | Description |
---|---|
x | the x |
public static double sinh(Double x)
//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); } }