zoukankan      html  css  js  c++  java
  • objective-c常用数学方法

    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);数学错误计算处理程序

    说法二:

    rand() ----随机数

    abs() / labs() ----整数绝对值

    fabs() / fabsf() / fabsl() ----浮点数绝对值

    floor() / floorf() / floorl() ----向下取整

    ceil() / ceilf() / ceill() ----向上取整

    round() / roundf() / roundl() ----四舍五入

    sqrt() / sqrtf() / sqrtl() ----求平方根

    fmax() / fmaxf() / fmaxl() ----求最大值

    fmin() / fminf() / fminl() ----求最小值

    hypot() / hypotf() / hypotl() ----求直角三角形斜边的长度

    fmod() / fmodf() / fmodl() ----求两数整除后的余数

    modf() / modff() / modfl() ----浮点数分解为整数和小数

    frexp() / frexpf() / frexpl() ----浮点数分解尾数和二为底的指数

    sin() / sinf() / sinl() ----求正弦值

    sinh() / sinhf() / sinhl() ----求双曲正弦值

    cos() / cosf() / cosl() ----求余弦值

    cosh() / coshf() / coshl() ----求双曲余弦值

    tan() / tanf() / tanl() ----求正切值

    tanh() / tanhf() / tanhl() ----求双曲正切值

    asin() / asinf() / asinl() ----求反正弦值

    asinh() / asinhf() / asinhl() ----求反双曲正弦值

    acos() / acosf() / acosl() ----求反余弦值

    acosh() / acoshf() / acoshl() ----求反双曲余弦值

    atan() / atanf() / atanl() ----求反正切值

    atan2() / atan2f() / atan2l() ----求坐标值的反正切值

    atanh() / atanhf() / atanhl() ----求反双曲正切值

  • 相关阅读:
    Seafile V4.1 安装笔记
    mysql int(3)与int(11)的区别
    python命令行参数处理模块 optparse 使用参考
    Python标准库 urllib2 的使用
    Python默认模块 os和shutil 实用函数
    ApacheBench 使用教程
    ThinkPHP中PATHINFO模式优化
    Perl中的特殊内置变量详解
    Perl内置变量速查表
    eclipse jetty debug
  • 原文地址:https://www.cnblogs.com/isItOk/p/4875571.html
Copyright © 2011-2022 走看看