for s=1:length(C_tem)
for w=1:length(C_tem{s})
if (abs(C_tem{s}{w}) >= 0)
C_tem{s}{w} = 1;
else
C_tem{s}{w} = 0;
end
end
end
我试图将大于 0 的值设置为 1,如果小于或等于 0,但由于某种原因这不起作用。我是 matlab 新手,如果可能的话,我真的需要帮助。先感谢您..