You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
感谢,之前我讲课的时候也发现这个问题了,忘记修订了!
在 2024-12-24 11:55:53,"cpxjazzwang" ***@***.***> 写道:
在NumPy 2.0版本中,ptp 方法已经从 ndarray 类中移除。因此,如果你在使用NumPy 2.0或更高版本,你需要使用 np.ptp(arr, ...) 来替代 arr.ptp()。
根据你提供的代码和错误信息,你正在尝试使用 array1.ptp(),这在NumPy 2.0及以后的版本中是不被允许的。你应该使用 np.ptp(array1) 来代替。
还有创造plt创造图表也失败了,是matplotlib 版本的原因么?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
在NumPy 2.0版本中,ptp 方法已经从 ndarray 类中移除。因此,如果你在使用NumPy 2.0或更高版本,你需要使用 np.ptp(arr, ...) 来替代 arr.ptp()。
根据你提供的代码和错误信息,你正在尝试使用 array1.ptp(),这在NumPy 2.0及以后的版本中是不被允许的。你应该使用 np.ptp(array1) 来代替。
还有创造plt创造图表也失败了,是matplotlib 版本的原因么?
The text was updated successfully, but these errors were encountered: