标签: 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'.
关于如何克服这个奇怪问题的任何想法?