Help Center

CExpfunction

Returns the complex exponential of this complex number.

Numeric DatatypesfunctionAfxComplex.incdocumented

Syntax

FUNCTION CExp (BYREF value AS _complex) AS _complex

Description

Returns the complex exponential of a complex number.

Example

DIM z AS _complex = (1, 1) z = CExp(z) PRINT CStr(z) Output: 1.468693939915885 +2.287355287178842 * i

Reference

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