Here you can find the source of cosh(Double x)
Parameter | Description |
---|---|
x | the x |
public static double cosh(Double x)
//package com.java2s; public class Main { /**/* w ww. ja va 2 s. c om*/ * Cosh. * * @param x the x * @return the double */ public static double cosh(Double x) { return Math.cosh(x); } }