MATLAB: ็How to compare value in cell array

cell arrayequalslogical compareMATLAB

status == 'A' status is cell array has A is value error Undefined operator '==' for input arguments of type 'cell'. how to fix this promblem

Best Answer

cellfun(@(x)x == 'A',status)