Java cosh cosh(double paramDouble)

Here you can find the source of cosh(double paramDouble)

Description

cosh

License

Open Source License

Declaration

public static strictfp double cosh(double paramDouble)
    

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static strictfp double cosh(double paramDouble)
    /*     */{//from   w w w  .  ja  v  a2s. c om
        /* 317 */return (StrictMath.exp(paramDouble) + StrictMath
                .exp(-paramDouble)) * 0.5D;
        /*     */}
}

Related

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