matlab plot函数
时间: 2023-09-07 18:17:50 浏览: 137
plot函数是Matlab中最基础的绘图函数之一,它可以用来绘制2D或3D的线性或非线性图形。它的语法格式为:
plot(x,y)
plot(y)
plot(x,y,LineSpec)
其中,x是一个可选的向量,表示x轴上的数值;y是一个向量,表示y轴上的数值;LineSpec是一个可选的参数,表示线条的样式。
以下是一些常用的plot函数示例:
1. 绘制简单的线形图
```matlab
x = 0:0.1:2*pi;
y = sin(x);
plot(x,y)
```
2. 绘制多个线形图
```matlab
x = 0:0.1:2*pi;
y1 = sin(x);
y2 = cos(x);
plot(x,y1,x,y2)
```
3. 绘制带有标题和标签的线形图
```matlab
x = 0:0.1:2*pi;
y1 = sin(x);
y2 = cos(x);
plot(x,y1,'b-',x,y2,'r--')
title('sin and cos functions')
xlabel('x axis')
ylabel('y axis')
legend('sin','cos')
```
4. 绘制散点图
```matlab
x = randn(100,1);
y = randn(100,1);
plot(x,y,'o')
```
5. 绘制柱状图
```matlab
x = [1 2 3 4 5];
y = [3 5 1 7 2];
bar(x,y)
```
6. 绘制3D图形
```matlab
x = -2:0.1:2;
y = -2:0.1:2;
[X,Y] = meshgrid(x,y);
Z = X.*exp(-X.^2-Y.^2);
surf(X,Y,Z)
```
阅读全文