ctanf函数
概要:
#include <complex.h> float complex ctanf(float complex z);
描述:
该函数计算参数的复正切值。
复变正切函数的数学定义如下所示:
参数:
float complex z
参数为一个float complex类型的复数。
返回值:
函数返回参数z的复正切值。
范例:
|
|
输出:
ctanf(1.0f + 1.0fi) = 0.27 + 1.08i
相关内容:
ctan | double complex类型的复变正切函数。 |
ctanl | long double complex类型的复变正切函数。 |