w3resource

Oracle COSH() function

Description

The Oracle COSH() function is used to return the hyperbolic cosine of a number.
The function takes any numeric or nonnumeric data type (can be implicitly converted to a numeric data type) as an argument.
If the argument is BINARY_FLOAT, then the function returns BINARY_DOUBLE. Otherwise, the function returns the same numeric data type as the argument.

Uses of Oracle COSH() Function
  • Hyperbolic Calculations: Compute the hyperbolic cosine of a given number.

  • Engineering Applications: Perform hyperbolic operations in various engineering fields.

  • Scientific Research: Apply the hyperbolic cosine function in scientific studies and experiments.

  • Mathematical Operations: Utilize in mathematical formulas requiring hyperbolic cosine values.

  • Data Analysis: Conduct hyperbolic transformations in data analysis.

  • Graphical Representations: Generate and plot hyperbolic cosine curves for visual data representation.

Syntax:

COSH(N) 

Parameters:

Name Description
N A number whose hyperbolic cosine value is to be retrieved.

Pictorial Presentation of COSH() function

Pictorial Presentation of Oracle COSH() function

Example-1

The statement below will return the hyperbolic cosine of 0.

SELECT COSH(0) "Hyperbolic Cosine"
FROM DUAL;

Here is the result.

Hyperbolic Cosine
-----------------
                1

Previous: COS
Next: EXP



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/oracle/oracle-numeric-functions/oracle-cosh-function.php