Wiki page
[
List of Math Functions] by
yumaikas
2016-08-19 07:20:57.
Artifact b9c76e48f05709d024e172c82993d21c50bd5caa:
1 D 2016-08-19T07:20:57.857
2 L List\sof\sMath\sFunctions
3 N text/x-markdown
4 U yumaikas
5 W 1173
6 Functions from go's Math package that I still need to implement:
7
8 func Abs(x float64) float64
9 func Atan2(y, x float64) float64
10 func Copysign(x, y float64) float64
11 func Dim(x, y float64) float64
12 func Float32bits(f float32) uint32
13 func Float32frombits(b uint32) float32
14 func Float64bits(f float64) uint64
15 func Float64frombits(b uint64) float64
16 func Frexp(f float64) (frac float64, exp int)
17 func Hypot(p, q float64) float64
18 func Ilogb(x float64) int
19 func Inf(sign int) float64
20 func IsInf(f float64, sign int) bool
21 func IsNaN(f float64) (is bool)
22 func Jn(n int, x float64) float64
23 func Ldexp(frac float64, exp int) float64
24 func Lgamma(x float64) (lgamma float64, sign int)
25 func Max(x, y float64) float64
26 func Min(x, y float64) float64
27 func Mod(x, y float64) float64
28 func Modf(f float64) (int float64, frac float64)
29 func NaN() float64
30 func Nextafter(x, y float64) (r float64)
31 func Nextafter32(x, y float32) (r float32)
32 func Pow(x, y float64) float64
33 func Pow10(e int) float64
34 func Remainder(x, y float64) float64
35 func Signbit(x float64) bool
36 func Sincos(x float64) (sin, cos float64)
37 func Yn(n int, x float64) float64
38 Z dd7afd1849bcf132b0f1e5816167574c