catanl函数
概要:
#include <complex.h> long double complex catanl(long double complex z);
描述:
该函数计算参数z的复数反正切值,沿虚轴在区间[-i,+i]外进行分支切割(branch cut)。
参数:
long double complex z
参数为一个long double complex类型的复数。
返回值:
函数返回参数z的复数反正切值,返回值位于虚轴无限制、实轴区间的范围内。
范例:
|
|
输出:
catanl(0.5L + 1.0Li) = 0.91+0.71i
相关内容:
catan | double complex类型的复变反正切函数。 |
catanf | float complex类型的复变反正切函数。 |