According to the SciPy release notes, the trapz function has been removed in SciPy 1.14 in favour of trapezoid.
The following replacement in Mie.py and Inverse.py works for me:
from scipy.integrate import trapezoid as trapz
instead of
from scipy.integrate import trapz
According to the SciPy release notes, the trapz function has been removed in SciPy 1.14 in favour of trapezoid.
The following replacement in Mie.py and Inverse.py works for me:
from scipy.integrate import trapezoid as trapzinstead of
from scipy.integrate import trapz