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.
所以我有一个通过矩阵的双循环,它读取每个单元格的内容,如果单元格的内容大于零,它会做一些事情。问题是矩阵中也没有实数,例如 Inf。我想要的是以下内容:
if (Cell < 0 or inf) {do something}
采用:
if (Cell < 0 || is.infinite(Cell)) { ... }
与您问题中的代码类似,这将检查数字是否小于零;更改条件以检查数字是否大于零是微不足道的。