函式名: cabs(_cabs)
功 能: 計算複數的絕對值
所屬庫:math.h
基本介紹
- 中文名:cabs
- 類型:函式名
- 功 能:計算複數的絕對值
- 所屬庫:math.h
函式簡介,程式示例,
函式簡介
函式名: cabs(_cabs)
用 法: double _cabs(struct _complex z);
參數說明:
struct _complex 定義在math.h下
struct _complex {
double x,y; /* real and imaginary parts */
} ;
程式示例
#include <stdio.h>#include <math.h>int main(void){ struct complex z; double val; z.x = 2.0; z.y = 1.0; val = cabs(z); printf("The absolute value of %.2lfi %.2lfj is %.2lf", z.x, z.y, val); return 0;}
下面的例子來自MSDN
#include <math.h>#include <stdio.h>int main( void ){ struct _complex number = { 3.0, 4.0 }; double d; d = _cabs( number ); printf( "The absolute value of %f + %fi is %f\n", number.x, number.y, d );}