Position Independent Source Code

Artifact Content
Login
Wiki page [List of Math Functions] by yumaikas 2016-08-19 07:20:57.

Artifact b9c76e48f05709d024e172c82993d21c50bd5caa:


D 2016-08-19T07:20:57.857
L List\sof\sMath\sFunctions
N text/x-markdown
U yumaikas
W 1173
Functions from go's Math package that I still need to implement:

	func Abs(x float64) float64
	func Atan2(y, x float64) float64
	func Copysign(x, y float64) float64
	func Dim(x, y float64) float64
	func Float32bits(f float32) uint32
	func Float32frombits(b uint32) float32
	func Float64bits(f float64) uint64
	func Float64frombits(b uint64) float64
	func Frexp(f float64) (frac float64, exp int)
	func Hypot(p, q float64) float64
	func Ilogb(x float64) int
	func Inf(sign int) float64
	func IsInf(f float64, sign int) bool
	func IsNaN(f float64) (is bool)
	func Jn(n int, x float64) float64
	func Ldexp(frac float64, exp int) float64
	func Lgamma(x float64) (lgamma float64, sign int)
	func Max(x, y float64) float64
	func Min(x, y float64) float64
	func Mod(x, y float64) float64
	func Modf(f float64) (int float64, frac float64)
	func NaN() float64
	func Nextafter(x, y float64) (r float64)
	func Nextafter32(x, y float32) (r float32)
	func Pow(x, y float64) float64
	func Pow10(e int) float64
	func Remainder(x, y float64) float64
	func Signbit(x float64) bool
	func Sincos(x float64) (sin, cos float64)
	func Yn(n int, x float64) float64
Z dd7afd1849bcf132b0f1e5816167574c