matlab plot增加图例
时间: 2023-11-07 12:58:19 浏览: 190
matlab开发-添加到图例
要在MATLAB中绘制带有图例的线图,可以使用plot函数和legend函数。首先,使用plot函数绘制线图,然后使用legend函数添加图例。在legend函数中,将每条线的说明作为输入参数传递。
下面是一个示例代码:
```matlab
x = 0:0.1:2*pi;
y1 = sin(x);
y2 = cos(x);
plot(x, y1, 'r', 'LineWidth', 2);
hold on;
plot(x, y2, 'b', 'LineWidth', 2);
hold off;
legend('sin', 'cos');
```
在这个示例中,我们使用sin函数和cos函数生成了两条曲线,并使用plot函数绘制了这两条曲线。然后,使用legend函数添加了图例,其中'sin'代表第一条曲线,'cos'代表第二条曲线。
阅读全文