cabs函数
函数简介
函数名: cabs(_cabs)
功 能:
计算复数的绝对值
所属库:math.h
用 法: double _cabs(struct _complex z);
参数说明: struct _complex 定义在math.h下
struct
_complex {
double x,y;
} ;
程序示例
#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[1]
#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);
}
函数名: cabs(_cabs)
程序示例
#include <stdio.h>
#include <math.h>
int main(void)
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[1]
#include <math.h>
#include <stdio.h>
int main( void )
{ struct _complex number = { 3.0, 4.0 };
double d;
printf( "The absolute value of %f + %fi is %f\n",number.x, number.y, d);
}
----夫英雄者,胸怀大志,腹有良谋,有包藏宇宙之机,吞吐天地之志者也。