w3resource

Oracle SINH() function

Description

This SINH() function returns the hyperbolic sine of n (an angle expressed in radians).
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 SINH() Function
  • Calculate the hyperbolic sine of an angle: Obtain the hyperbolic sine value of an angle expressed in radians.

  • Hyperbolic function computations: Perform calculations involving hyperbolic functions in various mathematical and engineering applications.

  • Graphing hyperbolic functions: Generate hyperbolic sine graphs and other related hyperbolic functions.

  • Signal processing: Analyze and process signals that involve hyperbolic sine waves.

  • Scientific research: Conduct research in fields like physics and engineering where hyperbolic sine calculations are necessary.

Syntax:

SIN(n)

Parameters:

Name Description
n A number whose sine value is to be retrieved.

Pictorial Presentation of SINH() function

Pictorial Presentation of Oracle SINH() function

Example:

SELECT SINH(.6)  "Hyperbolic sine of .6" FROM dual;

Here is the result.

Hyperbolic sine of .6
---------------------
           .636653582

The above statement will return the sine of .6.

Previous: SIN
Next: SQRT



Follow us on Facebook and Twitter for latest update.