csqrtl函数
概要:
#include <complex.h> long double complex csqrtl(long double complex z);
描述:
该函数计算参数z的复数平方根,沿负实轴区间进行分支切割(branch cut)。
参数:
long double complex z
参数为一个long double complex类型的复数。
返回值:
函数返回参数z的复数平方根,返回值位于右半平面范围内(包括虚轴)。
范例:
|
|
输出:
csqrtl(1.0L + 1.0Li) = 1.10+0.46i
相关内容:
csqrt | double complex类型的复变平方根函数。 |
csqrtf | float complex类型的复变平方根函数。 |