Previous Page | Next Page

Functions and CALL Routines

ARSINH Function



Returns the inverse hyperbolic sine.
Category: Hyperbolic

Syntax
Arguments
Details
Examples
See Also

Syntax

ARSINH(x)


Arguments

x

specifies a numeric constant, variable, or expression.

Range: [equation]

Details

The ARSINH function computes the inverse hyperbolic sine. The ARSINH function is mathematically defined by the following equation, where [equation]:

[equation]

Replace the infinity symbol with the largest double precision number that is available on your machine.


Examples

The following example computes the inverse hyperbolic sine.

data _null_;
   x=arsinh(5);
   x1=arsinh(-5);
   put x=;
   put x1=;
run;

SAS writes the following output to the log:

x=2.3124383413
x1=-2.312438341


See Also

Functions:

COSH Function

SINH Function

TANH Function

ARCOSH Function

ARTANH Function

Previous Page | Next Page | Top of Page