Help Center

CCotfunction

Returns the complex cotangent of a complex number.

Numeric DatatypesfunctionAfxComplex.incdocumented

Syntax

FUNCTION CCot (BYREF value AS _complex) AS _complex

Description

Returns the complex cotangent of a complex number.

Example

DIM z AS _complex = (1, 1) z = CCot(z) PRINT CStr(z) Output: 0.2176215618544027 -0.8680141428959249 * i

Reference

  • Include file AfxComplex.inc
  • Defined in AfxNova/AfxComplex.inc:956
  • Documented in Numeric Datatypes/Complex Numbers Procedures.md
  • Topic: Complex Numbers Procedures