python 中的 NaN 和有效性检查
我正在做一个程序,优化一些值。由于方程的原因,有时我的值是 NaN
我的问题是,某些条目是 NaN。
我想知道是否有一个测试来检查它们的逻辑有效性,以便我可以跳过这些值并重试。
到目前为止,我已经尝试检查
a==np.nan, a==nan, b=a a==b
无济于事。
我希望你能帮助我
谢谢
I'm doing a program where I optimize some values. Due to the equations, from time to time my values are NaN
My problem, some of the entries are NaN.
I would like to know if there is a test to check their logical validity so I can skip those values and retry.
So far I have tried checking for
a==np.nan, a==nan, b=a a==b
To no avail.
I hope you can help me
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用numpy,
Using numpy,
从 Python 2.6 开始,您需要
导入 math
并使用math.isnan(a)
。请参阅http://docs.python.org/library/math.html#math。伊斯南
Since Python 2.6, you want to
import math
and usemath.isnan(a)
.See http://docs.python.org/library/math.html#math.isnan