zoukankan      html  css  js  c++  java
  • iOS开发中的数学函数

    在iOS开发当中。。。我们往往会涉及到一些算法。。。为了节省一些时间。。。让APP很快地被开发出来。。。我们需要对各类函数有一定的了解。。。接下来。。。我把部分常用函数分享出来。。。希望能帮到大家。。。

    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() ----求反双曲正切值

  • 相关阅读:
    网页设计太麻烦?15款免费优质Bootstrap UI工具包助你效率倍增!
    【自古套路得人心】最全UI图表设计技巧和套路,分分钟打造最优设计
    原型对接工作流!摹客全面支持Axure原型
    赶紧收藏!41个Web UI工具包资源免费及付费下载
    2019年设计师必看,UI加载动画完全解读
    845G
    845G
    845D
    845C
    845B
  • 原文地址:https://www.cnblogs.com/Mr-Lin/p/5802763.html
Copyright © 2011-2022 走看看