Previous Page | Next Page

Functions and CALL Routines

COSH Function



Returns the hyperbolic cosine.
Category: Hyperbolic

Syntax
Arguments
Details
Examples

Syntax

COSH(argument)


Arguments

argument

specifies a numeric constant, variable, or expression.


Details

The COSH function returns the hyperbolic cosine of the argument, given by

[equation]


Examples

SAS Statements Results
x=cosh(0);
1
x=cosh(-5.0);
74.209948525
x=cosh(0.5);
1.1276259652

Previous Page | Next Page | Top of Page