Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有这个等距的“darray”:
epslist = np.linspace(-0.1,0.1,12)
有没有办法可以在这个“darray”中以“有序”位置“插入”一个“0”?这样,在这种情况下,应该将 '0' 添加到 的中间epslist,而不是最后。我真的不知道该怎么做以及我可以使用哪些工具。谢谢您的帮助!!
epslist
使用高级索引和连接,例如:
epslist = np.concatenate((epslist[epslist<0], [0], epslist[epslist>0]))