Example usage for org.apache.commons.math.util MathUtils cosh

List of usage examples for org.apache.commons.math.util MathUtils cosh

Introduction

In this page you can find the example usage for org.apache.commons.math.util MathUtils cosh.

Prototype

public static double cosh(double x) 

Source Link

Document

Returns the <a href="http://mathworld.wolfram.com/HyperbolicCosine.html"> hyperbolic cosine</a> of x.

Usage

From source file:org.netxilia.functions.MathFunctions.java

public double COSH(double number) {
    return MathUtils.cosh(number);
}