Java cosh cosh(Double x)

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

Description

Cosh.

License

Open Source License

Parameter

Parameter Description
x the x

Return

the double

Declaration

public static double cosh(Double x) 

Method Source Code

//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);
    }
}

Related

  1. cosh(double paramDouble)
  2. cosh(double x)
  3. cosh(double x)
  4. cosh(double x)