fabs函数怎么用?
用法:#include <math.h>
fabs函数是一个求绝对值的函数,求出x的绝对值,和数学上的概念相同,函数原型是extern float fabs(float x),用法是#include <math.h>。
程序判断滤波的C程序函数如下:
float program_detect_filter(float old_new_value[], float X)
{
float sample_value;
if (fabs(old_new_value[1]_old_new_value[0])>X)
sample_value=old_new_value[0];
else
sample_value=old_new_value[1];
retrun(sample_value);
}
函数调用需一个一维的两个元素的数组(old_new_value[2],用于存放上次采样值(old_new_value[0],)和本次采样值(old_new_value[1],),函数中sample_value表示有效采样值,X表示根据根据经验确定的两次采样允许的最大偏差△×。
扩展资料
功能:C语言中用来求浮点数x的绝对值
用法:#include <math.h> 使用的时候头文件中加上这个就可以直接调用了
说明:计算|x|, 当x不为负时返回 x,否则返回 -x
比如:
#include <stdio.h>
#include <math.h>
int main(void)
{
float number = -1234.0;
printf("number:%fabsolutevalue:%f\n", number, fabs(number));
return 0;
}
这里通过fabs()函数就可以成功输出浮点数-1234.0的绝对值了
参考资料来源:百度百科-fabs函数
广告 您可能关注的内容 |