Skip to main content

COSH

Returns the hyperbolic cosine of a number.

Syntax

expression.COSH(arg1);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberAny real number for which the hyperbolic cosine will be returned.

Returns

number

Example

This example shows how to get the hyperbolic cosine of a number.

// How to find a hyperbolic cosine.

// Use function to get the hyperbolic cosine of an angle.

let worksheet = Api.GetActiveSheet();
let func = Api.GetWorksheetFunction();
worksheet.GetRange("A1").SetValue(func.COSH(3));