当前位置: C语言 -- 标准库 -- <complex.h> -- casinhl

casinhl函数


概要:
#include <complex.h>
long double complex casinhl(long double complex z);

描述:

该函数计算参数z的复数反双曲正弦值,沿虚轴在区间[-i+i]外进行分支切割(branch cut)。


参数:
long double complex z

参数为一个long double complex类型的复数。


返回值:

函数返回参数z的复数反双曲正弦值,返回值位于虚轴区间casinhl函数返回值的虚轴区间、实轴无限制的范围内。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
/*函数casinhl范例*/

#ifdef __STDC_NO_COMPLEX__
#error "Implementation does not support complex types."
#endif

#include <complex.h>
#include <stdio.h>

int main(void)
{
    long double complex x = 1.0L + 0.5LI;
    long double complex y;
    char *ptr = "casinhl(1.0L + 0.5Li)";

    y = casinhl(x);
    printf("%s = %.2Lf%+.2Lfi\n", ptr, creall(y),cimagl(y));

    return 0;
}

输出:

casinhl(1.0L + 0.5Li) = 0.93+0.35i


相关内容:
casinh double complex类型的复变反双曲正弦函数。
casinhf float complex类型的复变反双曲正弦函数。