如何在Python 2.7中使用数组A的非无限数的索引来创建数组C?
数组 A 看起来像这样:
[1, -inf, 2, 3, inf, -60.2]
数组 C 应该看起来像这样:
[0, 2, 3, 5]
How can I make array C with the non-infinite number of array A in Python 2.7?
Array A looks like this:
[1, -inf, 2, 3, inf, -60.2]
Array C should look like this:
[0, 2, 3, 5]
How can I make array C with the indices of non-infinite numbers of array A in Python 2.7?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果“数组”是指“numpy 数组”:
If by "array" you mean "numpy array":