发布网友 发布时间:2022-04-25 11:36
共2个回答
热心网友 时间:2024-01-21 00:53
查看一下legend函数 用来做图例的
x=0:0.2:12;
plot(x,sin(x),'-',x,1.5*cos(x),':')
legend('First','Second',-1)
legend添加图例标注字符串依次注释plot图面板参数(此处-1)表示注释位置
热心网友 时间:2024-01-21 00:53
x=[1.0333329; 1.336927;1.352869; 1.333241] ;
y=[0.609044; 0.607161; 0.590259; 0.585688];
u=['1 小丽'; '1 小军'; '2 小红'; '2 小杰'];
figure
plot(x,y,'o')
for i=1:length(x)
text(x(i),y(i),num2str(u(i,:)))
end
直接运行此代码即可实现