Objective-C中math.h数学计算公式介绍

移动开发 iOS
本文为各位网友介绍了Objective-C中math.h里的数学计算公式,相信会对一个拥有求知心的你有所帮助。

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); 反正切(整圆值), 结果介于[-PI, PI] 

3 、双曲三角函数 
double sinh (double); 
double cosh (double); 
double tanh (double); 

4 、指数与对数  
double exp (double);求取自然数e的幂 
double sqrt (double);开平方 
double log (double); 以e为底的对数 
double log10 (double);以10为底的对数 
double pow(double x, double y);计算以x为底数的y次幂 
float powf(float x, float y); 功能与pow一致,只是输入与输出皆为浮点数 

5 、取整  
double ceil (double); 取上整 
double floor (double); 取下整 

6 、绝对值  
double fabs (double);求绝对值 
double cabs(struct complex znum) ;求复数的绝对值 

7 、标准化浮点数 
double frexp (double f, int *p); 标准化浮点数, f = x * 2^p, 已知f求x, p ( x介于[0.5, 1] ) 
double ldexp (double x, int p); 与frexp相反, 已知x, p求f 

8 、取整与取余  
double modf (double, double*); 将参数的整数部分通过指针回传, 返回小数部分 
double fmod (double, double); 返回两参数相除的余数 

9 、其他 
double hypot(double x, double y);已知直角三角形两个直角边长度,求斜边长度 
double ldexp(double x, int exponent);计算x*(2的exponent次幂) 
double poly(double x, int degree, double coeffs [] );计算多项式 
nt matherr(struct exception *e);数学错误计算处理程序

责任编辑:闫佳明 来源: oschina
相关推荐

2011-08-04 15:14:39

Objective-C 数据类型

2011-08-17 15:37:23

Objective-C垃圾收集

2023-12-06 13:19:00

C++数学函数

2011-08-15 17:47:13

Objective-CisMemberOfC

2011-08-10 18:07:29

Objective-C反射

2011-07-20 13:34:37

Objective-C self.

2013-03-27 12:54:00

iOS开发Objective-C

2013-06-20 10:40:32

Objective-C实现截图

2011-05-11 11:20:26

Objective-C

2011-05-11 15:58:34

Objective-C

2011-07-08 18:44:09

Objective-C Self Super

2011-08-15 17:06:01

Objective-CNSLog

2011-07-27 16:18:42

Objective-c 协议

2011-08-04 10:57:33

Objective-C C语言 BOOL

2011-08-04 14:58:37

Objective-C Cocoa NSString

2011-05-11 13:54:08

Objective-C

2011-05-11 15:45:50

内存管理Objective-C

2011-08-02 13:16:36

Objective-C 语法 函数

2011-08-04 11:15:46

Objective-C 构造函数 构造方法

2011-05-11 14:06:49

Objective-C
点赞
收藏

51CTO技术栈公众号