(matlab) figure中画多条线,并对每条线依次加标注

t = 0 : 0.01 : 5;
x = sin(t);
y = cos(t);
figure
plot(t, x,'red--');  % 绘制正弦曲线
hold on;  % 将正弦曲线保持在图形中
plot(t, y,'y+'); % 绘制余弦曲线,完成后图形中就会同时显示正弦曲线和余弦曲线
hold on
z=x+y;
plot(t,z,'b:.')
hold on
g=x.*y;
plot(t,g,'g.')
hold on

legend('sin(t)','cos(t)','sin(t)+cos(t)','sin(t)*cos(t)') %可依次设置成你想要的名字

(matlab) figure中画多条线,并对每条线依次加标注_第1张图片

你可能感兴趣的:(matlab,matlab,画线,加标注)