matlab中legend函数的用法
时间: 2023-04-29 13:05:25 浏览: 370
Matlab中图例注释函数legend详解
MATLAB 中的 `legend` 函数用于在图形中添加图例。语法如下:
legend(str1,str2,str3, ... )
其中 str1,str2,str3, ... 是图例中显示的文本字符串。
例如:
x = 0:pi/10:2*pi;
y1 = sin(x);
y2 = cos(x);
plot(x,y1,'r-',x,y2,'b--');
legend('y1 = sin(x)','y2 = cos(x)');
这样就在图形上添加了图例,显示y1 = sin(x)和y2 = cos(x)
你还可以用legend(h,str)来指定具体的图线或点来添加图例,或者使用legend('location',pos)来设置图例位置。
阅读全文