首页 > 代码库 > R_logic

R_logic

& 与向量中的每一个元素 求and

&& 仅与向量中的第一个元素 求and

| 与向量中的每一个元素 求or

|| 与向量中的第一个元素 求or

which() function takes a logical vector as an argument and returns the indices of the vector that are TRUE 返回符合逻辑的数

 

R_logic