latmatcher / backend /lsquant /fast_math /bessel_generator.py
AndreiVoicuT's picture
Upload 85 files
1c703f0 verified
raw
history blame
99 Bytes
import scipy.special as sp
def bj(m, x):
"mth-order Bessel function"
return sp.jv(m, x)