📜  清除散点图matlab - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:04.756000             🧑  作者: Mango

代码示例1
figure
 hold on
 h1 = plot(1:10,'r');
 h2 = plot(2:11,'g');
 if 
     set(h2,'Visible','off')
 end