Skip to content

Instantly share code, notes, and snippets.

@nhthn
Created January 20, 2022 02:03
Show Gist options
  • Save nhthn/fa5a444c83a90a1542dce0a82c49c594 to your computer and use it in GitHub Desktop.
Save nhthn/fa5a444c83a90a1542dce0a82c49c594 to your computer and use it in GitHub Desktop.
Bessel function zeros
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