使用Matlab逻辑运算符和表时出错

时间:2015-11-20 15:34:09

标签: matlab operators cell logical-operators

我试图使用以下代码使用一个非常简单的逻辑参数:

for i=1:size(A)
    if A.VariableName(i)==0
        flag=1;
        break
    end
end

然而我收到以下错误:

Undefined operator '==' for input arguments of type 'cell'.

关于如何克服这个奇怪问题的任何想法?

0 个答案:

没有答案