gitee.com/quant1x/num@v0.3.2/math32/doc.go (about) 1 /* 2 Package math32 provides basic constants and mathematical functions for float32 types. 3 4 At its core, it's mostly just a wrapper in form of float32(math.XXX). This applies to the following functions: 5 6 Acos 7 Acosh 8 Asin 9 Asinh 10 Atan 11 Atan2 12 Atanh 13 Cbrt 14 Cos 15 Cosh 16 Erfc 17 Gamma 18 J0 19 J1 20 Jn 21 Log10 22 Log1p 23 Log2 24 Logb 25 Pow10 26 Sin 27 Sinh 28 Tan 29 Y0 30 Y1 31 32 Everything else is a float32 implementation. Implementation schedule is sporadic an uncertain. But eventually all functions will be replaced 33 */ 34 package math32