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

Get the hyperbolic cosine of a number in a spreadsheet.

// How to find a hyperbolic cosine in a spreadsheet.

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

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