5.1 math — 基本数学函数

    • func Sincos(x float64) (sin, cos float64)
    1. - func Cosh(x float64) float64
    2. - func Acosh(x float64) float64
    1. - func Cbrt(x float64) float64 // 立方根函数
    2. - func Pow(x, y float64) float64 // x 的幂函数
    3. - func Pow10(e int) float64 // 10 根的幂函数
    4. - func Log(x float64) float64 // 对数函数
    5. - func Log10(x float64) float64 // 10 为底的对数函数
    6. - func Log1p(x float64) float64 // log(1 + x)
    7. - func Logb(x float64) float64 // 相当于 log2(x) 的绝对值
    8. - func Ilogb(x float64) int // 相当于 log2(x) 的绝对值的整数部分
    9. - func Exp2(x float64) float64 // 2 为底的指数函数
    10. - func Expm1(x float64) float64 // Exp(x) - 1
    1. - func Float32bits(f float32) uint32 // float32 和 unit32 的转换
    2. - func Float32frombits(b uint32) float32 // uint32 和 float32 的转换
    3. - func Float64frombits(b uint64) float64 // uint64 和 float64 的转换

    导航