matlab多次plot
时间: 2023-11-02 13:02:30 浏览: 121
绘制多根二维曲线-Matlab绘图教程
在MATLAB中,可以使用多次plot函数来在同一个图中绘制多个函数的图像。首先使用hold on函数来保持图像的状态,然后依次调用plot函数来绘制不同的函数图像。每个plot函数可以使用不同的线型、颜色和标记来区分不同的函数。可以使用legend函数为每个函数添加标记。最后,使用xlabel、ylabel和title函数来添加坐标轴标签和标题。
示例代码如下:
```matlab
x = linspace(0, 2*pi, 100); %定义x轴的取值范围
y1 = sin(x);
y2 = cos(x);
y3 = tan(x);
hold on
plot(x, y1, 'r') %绘制sin函数的图像,线条为红色
plot(x, y2, 'g') %绘制cos函数的图像,线条为绿色
plot(x, y3, 'b') %绘制tan函数的图像,线条为蓝色
hold off
legend('sin', 'cos', 'tan')
xlabel('X-axis')
ylabel('Y-axis')
title('Trigonometric Functions')
```
阅读全文