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