Created
January 20, 2022 02:03
-
-
Save nhthn/fa5a444c83a90a1542dce0a82c49c594 to your computer and use it in GitHub Desktop.
Bessel function zeros
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import scipy.special | |
f0 = scipy.special.jn_zeros(0, 1)[0] | |
print([list(scipy.special.jn_zeros(n, 10) / f0) for n in range(10)]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment