[Contents] [Previous Section] [Next Section] [Index]


cexp-Complex Exponential

Interface

F_COMPLEX cexp (F_TYPE x, F_TYPE y)

Description

cexp() returns the exponential of a complex number.

cexp(x,y) is defined as e**(x + iy) = e**x cos y + ie**x sin y.

Exceptions


Exceptional Argument       Routine Behavior

|y| = infinity             Invalid argument

|e**x cos y| > max_float   Overflow

|e**x sin y| > max_float   Overflow

|e**x cos y| < min_float   Underflow

|e**x sin y| < min_float   Underflow



See Also

Appendix A, Critical Floating-Point Values


[Contents] [Previous Section] [Next Section] [Index]