Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

cosh()

Example

Provide the hyperbolic cosine values for various numbers.

System.out.println(Math.cosh(3));
System.out.println(Math.cosh(-3));
System.out.println(Math.cosh(0));
System.out.println(Math.cosh(1));

Definition and Usage

The cosh() method computes the hyperbolic cosine of a number.

It’s equivalent to (Math.exp(number) + Math.exp(-number)) / 2.

Syntax

public static double cosh(double number)

Parameter Values

Parameter

Description

number

Necessary: A number for which to determine the hyperbolic cosine.

Technical Details

Returns

double value indicating the hyperbolic cosine of a number.

Java Version

1.5+