mirror of
https://github.com/make-42/xyosc
synced 2025-01-18 18:57:10 +01:00
8 lines
99 B
Go
8 lines
99 B
Go
package math32
|
|
|
|
import "math"
|
|
|
|
func J1(x float32) float32 {
|
|
return float32(math.J1(float64(x)))
|
|
}
|