标签: r if-statement
有什么区别:
if (beweg[temp+x,2] > 10 & x<0 | x>0)
和
if (beweg[temp+x,2] > 10 & x!=0)
我想测试x是否不是0.两者都给我不同的解决方案。
x