ios開發中常用的數學函式
---- 常用數學公式 ----
*///
指數運算 3^2 3^3
nslog(@"
結果 %.f
", pow(3,2)); //
result 9
nslog(@"
結果 %.f
", pow(3,3)); //
result 27
//開平方運算
nslog(@"
結果 %.f
", sqrt(16)); //
result 4
nslog(@"
結果 %.f
", sqrt(81)); //
result 9
//進一
nslog(@"
結果 %.f
", ceil(3.000000000001)); //
result 4
nslog(@"
結果 %.f
", ceil(3.00)); //
result 3
//退一
nslog(@"
結果 %.f
", floor(3.000000000001)); //
result 3
nslog(@"
結果 %.f
", floor(3.9999999)); //
result 3
//四捨五入
nslog(@"
結果 %.f
", round(3.5)); //
result 4
nslog(@"
結果 %.f
", round(3.46)); //
result 3
nslog(@"
結果 %.f
", round(-3.5)); //
nb: this one returns -4
//最小值
nslog(@"
結果 %.f
", fmin(5,10)); //
result 5
//最大值
nslog(@"
結果 %.f
", fmax(5,10)); //
result 10
//絕對值
nslog(@"
結果 %.f
", fabs(10)); //
result 10
nslog(@"
結果 %.f
", fabs(-10)); //
result 10
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 at...
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 at...
C 中常用數學函式
include using abs 絕對值 using acos 反余弦 using acosf 反余弦 using acosl 反余弦 using asin 反正弦 using asinf 反正弦 using asinl 反正弦 using atan 反正切 using atan2 y x的反正切...