MATLAB: How to set less than equal condition for two different cells

cellcell array

y=length(find(le({x},{rs})));

Best Answer

x = {rand(3,1)} ;
rs = {rand(3,1)} ;
y=length(find(le(x{1},rs{1})));
Related Question