如何画具有多列的图例

手把手教学 。
需要这些哦
matlab
电脑
方式/
1号令行键入:
x = linspace(0,10);
%界说x 。

如何画具有多列的图例

文章插图

2号令行键入:
y1 = sin(x);
y2 = sin(0.9*x);
y3 = sin(0.8*x);
y4 = sin(0.7*x);
y5 = sin(0.6*x);
y6 = sin(0.5*x);
%界说y1,y2,y3,y4,y5,y6 。
如何画具有多列的图例

文章插图

3号令行键入:
plot(x,y1,'DisplayName','sin(x)')
%绘图 。
如何画具有多列的图例

文章插图

4号令行键入:
hold on
%图形连结 。

5号令行键入:
plot(x,y2,'DisplayName','sin(0.9x)')
plot(x,y3,'DisplayName','sin(0.8x)')
plot(x,y4,'DisplayName','sin(0.7x)')
plot(x,y5,'DisplayName','sin(0.6x)')
【如何画具有多列的图例】plot(x,y6,'DisplayName','sin(0.5x)')
%绘图 。
如何画具有多列的图例

文章插图

6号令行键入:
hold off
%打消连结

7号令行键入:
lgd = leg;
%标签 。
如何画具有多列的图例

文章插图

8号令行键入:
lgd.NumColumns = 2;
%经由过程将 NumColumns 属性设置为 2 来添加一个具有两列的图例 。
如何画具有多列的图例

文章插图


以上内容就是如何画具有多列的图例的内容啦 , 希望对你有所帮助哦!

    推荐阅读