Skip to main content

TANH

Returns the hyperbolic tangent of a number.

Syntax

expression.TANH(arg1);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

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

Returns

number

Example

This example shows how to return the hyperbolic tangent of a number.

// How to return the hyperbolic tangent of a number.

// Use a function to calculate angle's hyperbolic tangent.

let worksheet = Api.GetActiveSheet();
let func = Api.GetWorksheetFunction();
worksheet.GetRange("A1").SetValue(func.TANH(6));