sinh()

Table of Contents

Definition

sinh() calculates the hyperbolic sine of X radians.

Examples

The following example calculates the hyperbolic sine for ten different values in the 'x' column.

| makeresults count=10
| eval x=1
| accum x
| eval n=sinh(x)
Screenshot of the previous example’s result

Further Reading