Skip to main content

COT

Returns the cotangent of an angle.

Syntax

expression.COT(arg1);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberThe angle in radians for which the cotangent will be returned.

Returns

number

Example

Calculate the cotangent of an angle in a spreadsheet.

// What is the reciprocal tangent value in a spreadsheet?

// Find the inverted tangent ratio for a given angle in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let func = Api.WorksheetFunction;
worksheet.GetRange("A1").SetValue(func.COT(0.785398));