📜  clf subplot matlab - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:31.086000             🧑  作者: Mango

代码示例1
h1 = subplot(2,1,1);
hold on
x1=(0:0.01:10);
y1=sin(x1);
p1=plot(x1,y1);
h2 = subplot(2,1,2)
hold on
x1=(0:0.01:10);
y2=sin(x1)+cos(x1);
p2=plot(x1,y2,'Color','r');
cla(h2)
cla(h1)