TRY NEW VERSION

Try now New API BETA

Try out the new view and capabilities of the API documentation

START

CSCH

CSCH(arg1) → { number | string | boolean }

Returns the hyperbolic cosecant of an angle.

Parameters:

Name Type Description
arg1 number

Is the angle in radians for which you want the hyperbolic cosecant.

Returns:

Type
number | string | boolean

Example

Copy code
builder.CreateFile("xlsx");
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.CSCH(0.785398));
builder.SaveFile("xlsx", "CSCH.xlsx");
builder.CloseFile();

Resulting document