mirror of
https://github.com/make-42/xyosc
synced 2025-01-19 02:57:34 +01:00
12 lines
188 B
Go
12 lines
188 B
Go
|
package math32
|
||
|
|
||
|
import "math"
|
||
|
|
||
|
func Jn(n int, x float32) float32 {
|
||
|
return float32(math.Jn(n, float64(x)))
|
||
|
}
|
||
|
|
||
|
func Yn(n int, x float32) float32 {
|
||
|
return float32(math.Yn(n, float64(x)))
|
||
|
}
|