We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In scipy version of 1.14.1, there is no trapz in integrate. Therefore, after upgrading scipy, I got an error from this part of the code:
AttributeError: module 'scipy.integrate' has no attribute 'trapz'
The text was updated successfully, but these errors were encountered:
@farzanehnakhaee70 Thanks for reporting this bug.
It seems the function trapz has been deprecated in favor of trapezoid in a recent version of scipy. I will fix the package accordingly.
trapz
trapezoid
Sorry, something went wrong.
Fixes call to deprecated scipy.integrate.trapz function. (#363)
5d2538d
Fixes issues #362
Fixed in #363 and v0.7.7
No branches or pull requests
In scipy version of 1.14.1, there is no trapz in integrate. Therefore, after upgrading scipy, I got an error from this part of the code:
The text was updated successfully, but these errors were encountered: