Java .sinh()

Anonymous contributor's avatar
Anonymous contributor
Published Oct 21, 2022
Contribute to Docs

The Math.sinh() method returns the hyperbolic sine of a double-type value.

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn to code in Java — a robust programming language used to create software, web and mobile apps, and more.
    • Beginner Friendly.
      17 hours

Syntax

Math.sinh(double num)

The return type of the .sinh() method is a double.

Some special cases for the .sinh() method include the following:

  • If num is NaN, then the result is NaN.
  • If num is infinite, then infinity is returned with the same sign as num.
  • If num is zero, then zero is returned with the same sign as num.

The computed result will be within 2.5 units of least precision (ulps) of the exact result.

Example

The following example demonstrates the application of .sinh() method:

// Check.java
public class Check {
public static void main(String args[]) {
double num = 64.0;
System.out.println(Math.sinh(num));
}
}

This results in the following output:

3.1175745404058084E27

All contributors

Contribute to Docs

Learn Java on Codecademy

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn to code in Java — a robust programming language used to create software, web and mobile apps, and more.
    • Beginner Friendly.
      17 hours