1.(in negative statements) either every little or very great but unspecified;
can't stand any noise
2.one or some or every or all without specification;
give me any peaches you don't want
3.to any degree or extent;
it isn't any better
函数简介 函数功能:判断数组中元素是否为0 语法格式: B = any(A) 判断数组中元素是否是一个非零元素或逻辑1(true)。any函数会忽略掉数组中的NaN项(not a number)。 如果A是空的,any(A)返回逻辑0(false)。 如果A是一个向量(1行n列或n行1列的矩阵),只要A中有一个非零元素或A中有一个元素是逻辑1,any(A)返回逻辑1(true),否则(A中所有元素均为0)返回逻辑0(false)。 如果A是一个矩阵,any函数把A的每一列当做一个