jn.go 188 B

1234567891011
  1. package math32
  2. import "math"
  3. func Jn(n int, x float32) float32 {
  4. return float32(math.Jn(n, float64(x)))
  5. }
  6. func Yn(n int, x float32) float32 {
  7. return float32(math.Yn(n, float64(x)))
  8. }