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

cabsf函数


概要:
#include <complex.h>
float cabsf(float complex z);

描述:

该函数计算参数z的复数绝对值(也称模)。

假设z=a+bi,则|z|=a2+b2


参数:
float complex z

参数为一个float complex类型的复数。


返回值:

函数返回参数z的复数绝对值。


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

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

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

int main(void)
{
    float complex x = 1.0f + 1.0fI;
    float y;
    char *ptr = "cabsf(1.0f + 1.0fi)";

    y = cabsf(x);
    printf("%s = %.2f\n", ptr, y);

    return 0;
}

输出:

cabsf(1.0f + 1.0fi) = 1.41


相关内容:
cabs double类型的复变绝对值函数。
cabsl long double类型的复变绝对值函数。