C语言常用数学函数及其用法

转自:http://blog.sina.com.cn/s/blog_8b5a0d0001011779.html

三角函数:(所有参数必须为弧度)
 
 1.acos

函数申明:acos  (double x);
   用途:用来返回给定的 X 的反余弦函数。

2.asin

函数申明:asin  (double x);
   用途:用来返回给定的 X 的反正弦函数。

3.atan

函数申明:atan  (double x);
   用途:用来返回给定的 X 的反正切函数。

4.sin

函数声明:sin   (double x);
   用途:用来返回给定的 X 的正弦值。

5.cos

函数声明:cos   (double x);
   用途:用来返回给定的 X 的余弦值。

6.tan

函数声明:tan   (double x);
   用途:用来返回给定的 X 的正切值。

7.atan2

函数声明:atan2 (double y, double x);
   用途:返回给定的 X 及 Y 坐标值的反正切值
 
其他函数:

8.atof

函数名: atof  (const char *s);
  功  能: 把字符串转换成浮点数
  用  法: double atof(const char *nptr);
  程序例:
   #i nclude <stdlib.h>
   #i nclude <stdio.h>

int main(void)
   {

float arg,*point=&arg;
    float f;
    char *str = "12345.67";

f = atof(str);
    printf("string = %s float = %f\n", str, f);
    return 0;
   }

9. ceil  和 floor

函数名: ceil  
                 floor 
   功  能: 向上舍入
        向下舍入
   用  法: double ceil(double x);
        double floor(double x);
   程序例:

#i nclude<math.h>

int main(void)
   {
    double number = 123.54;
    double down, up;

down = floor(number);
    up = ceil(number);

printf("original number     %5.2lf\n", number);
    printf("number rounded down %5.2lf\n", down);
    printf("number rounded up   %5.2lf\n", up);

return 0;
  }该程序运行结果:original number     123.54
                   number rounded down 123.00
                   number rounded up   124.00

10.fabs

函数名:fabs
    功能:求浮点数x的绝对值.
    用法:fabs  (double x);

11.fmod

函数名: fmod
    功  能: 计算x对y的模, 即x/y的余数
    用  法: double fmod(double x, double y);
    程序例:

#i nclude <stdio.h>
    #i nclude <math.h>

int main(void)
    {
     double x = 5.0, y = 2.0;
     double result;

result = fmod(x,y);
     printf("The remainder of (%lf / %lf) is \
          %lf\n", x, y, result);
     return 0;
    }

12.abs

函数名:abs
   功能:返回整型数的绝对值.
   用法:Abs(number)
        number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0.

幂指数:

13.exp

函数名:exp
    功能:返回 e 的 n 次幂.
    用法:exp   (double x);

14.frexp

函数名: frexp
    功  能: 把一个双精度数分解为尾数的指数
    用  法: double frexp(double value, int *eptr);
    程序例:

#i nclude <math.h>
    #i nclude <stdio.h>

int main(void)
    {
      double mantissa, number;
      int exponent;
      number = 8.0;
      mantissa = frexp(number, &exponent);
      printf("The number %lf is ", number);
      printf("%lf times two to the ", mantissa);
      printf("power of %d\n", exponent);
      return 0;
    }

15.log

函数名:log
    功 能: 自然对数函数ln(x) 
    用 法: double log(double x); 
    程序例:

#i nclude <math.h>
    #i nclude <stdio.h>
    int main(void) 
    { 
     double result; 
     double x = 8.6872; 
     result = log(x); 
     printf("The natural log of %lf is %lf\n", x, result); 
     return 0; 
    }

log(x,y)=ln(y)/ln(x)

16.ldexp

函数名: ldexp 
    功 能: 计算value*(2的exp幂 ).
    用 法: double ldexp(double value, int exp); 
    程序例: 
    #i nclude 
    #i nclude 
    int main(void) 
    { 
     double value; 
     double x = 2; 
 
     value = ldexp(x,3); 
     printf("The ldexp value is: %lf\n", value); 
     return 0; 
    } 运行结果为:2*2^3=16.
 
 17.log10

函数名:log10
    功能:返回以 10 为底的对数.
    用法:log10 (double x);

18.sqrt

函数名:sqrt
    功能:返回指定数字的平方根.
    用法:sqrt  (double x);

19.modf

函数名:modf
    功  能: 把数分为指数和尾数
    用  法: double modf(double value, double *iptr);
    程序例:
    #i nclude <math.h>
    #i nclude <stdio.h>
    int main(void)
   {
    double fraction, integer;
    double number = 100000.567;
    fraction = modf(number, &integer);
    printf("The whole and fractional parts of %lf are %lf and %lf\n",number, integer, fraction);
    return 0;
   }

20.pow

函数名:pow
    功能:返回指定数字的指定次幂.
    用法:pow   (double x, double y);(将返回x的y次幂)
 
双曲函数:
 
 21.cosh

函数名:cosh 
    功能:返回指定角度的双曲余弦值.
    用法:Double  Cosh(double x(以弧度计量的角度)) ;

22.sinh

函数名:sinh
    功能:返回指定角度的双曲正弦值。
    用法:sinh  (double x);(其中参数x必须为弧度制)
 
 23.tanh

函数名:tanh
    功能:回指定角度的双曲正切值.
    用法:tanh  (double x);

时间: 2024-10-14 19:24:50

C语言常用数学函数及其用法的相关文章

嵌入式之---常用模板函数(用法说明函数、参数解析函数)

主要内容:嵌入式常用模板函数(用法说明函数.参数解析函数) /*显示参数列表*/ void usage() {     printf("usage: server [-p:x] [-i:IP] [-o]\n\n");     printf("       -p:x      Port number to listen on\n");     printf("       -i:str    Interface to listen on\n");

Java--分支语句、循环、数组、控制台输入语句、常用数学函数

**-----本章节-----** 1.分支语句 2.循环 3.数组 4.控制台输入语句 5.部分常用的数学函数 ============================================================== 一分支语句 1.概念 (1)分支语句又称条件语句条件语句使部分程序可根据某些表达式的值被有选择地执行. (2)Java编程语言支持双路 if和多路 switch 分支语句. ===========================================

GPU编程中的常用数学函数

在GPU编程中,函数一般分为以下几种类型:数学函数.几何函数.纹理映射函数.偏导数函数.调试函数等.熟练利用好GPU自带函数,可以在一定程度上提高并行编程速度与效率. 关于数学数学函数(Mathematical Functions) 数学函数用于执行数学上常用计算,比如:三角函数.幂函数.向量和矩阵函数,这些函数一般都被重载,用来支持标量数据和不同长度的向量作为输入参数.列表如下: 标准函数库中的数学函数 未完待续......

R语言笔记 数学函数

数学函数 表5-2列出了常用的数学函数和简短的用例. 表5-2 数学函数 函 数 描 述 abs(x) 绝对值 abs(-4)返回值为4 sqrt(x) 平方根sqrt(25)返回值为5 和25^(0.5)等价 ceiling(x) 不小于x的最小整数 ceiling(3.475)返回值为4 floor(x) 不大于x的最大整数 floor(3.475)返回值为3 trunc(x) 向 0 的方向截取的x中的整数部分 trunc(5.99)返回值为5 图灵社区会员 matrixvirus([em

2、Python基础--除法、常用数学函数

整数与整数相除: >>> 2/5 0 >>> 2.0/5 0.4 >>> 2/5.0 0.4 >>> 2.0/5.0 0.4 >>> 7/2 3 >>> 7.0/2 3.5 >>> 注意:整数除以整数,结果是整数(取商): 例如7/2,商是3(整数),余数是2,结果值为3. 浮点数与整数相除: >>> 9.0/2 4.5 >>> 9/2.0 4.

常用数学函数篇abs acos asin atan ceil cos exp frexp ldexp log pow sin sinh sqrt tan tanh

abs(计算整型数的绝对值) 相关函数 labs, fabs 表头文件 #include<stdlib.h> 定义函数 int abs (int j) 函数说明 abs()用来计算参数j的绝对值,然后将结果返回. 返回值 返回参数j的绝对值结果. 范例 #ingclude <stdlib.h> main(){ int ansert; answer = abs(-12); printf("|-12| = %d\n", answer); } 执行 |-12| = 1

常用数学函数

abs(x) 绝对值arctan(x) 反正切cos(x) 传回馀弦函数值exp(x) e的x次幂frac(x) 取小数部分int(x) 取整ln(x) 自然对数sin(x) 传回正弦函数值 sqr(x) x*xsqrt(x) 平方根round(x) 四舍五入Trunc(x)取整Odd(x)奇数偶数判断Random[(x)]随即函数

ios常用数学函数

1. 三角函数  double sin (double);正弦  double cos (double);余弦  double tan (double);正切  2 .反三角函数  double asin (double); 结果介于[-PI/2, PI/2]  double acos (double); 结果介于[0, PI]  double atan (double); 反正切(主值), 结果介于[-PI/2, PI/2]  double atan2 (double, double); 反正

Matlab——系统预定义的变量 常用数学函数

原文地址:https://www.cnblogs.com/expedition/p/10884591.html