Using Position correctly

≯℡__Kan透↙ 提交于 2019-12-19 18:21:34

问题


In the mma help docs for Position, the following is listed under "Possible Issues"

In[1]:= Position[Range[-1, 1, 0.05], 0.1]
Out[1]= {}

There is no explanation given though. Why does this happen? So if I really need to find the position of 0.1 in Range[-1,1,0.05], how do I do it?


回答1:


It is a numeric precision issue: 0.1 in the Range is not internally the same as 0.1 typed in. The normal way to resolve this is to compare with Equal rather than the implicit SameQ.

Position[Range[-1, 1, 0.05], x_ /; x == 0.1]


来源:https://stackoverflow.com/questions/5750623/using-position-correctly

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!