matlab中加一条线
时间: 2023-11-11 19:59:06 浏览: 162
matlab中点划线
在Matlab中加一条线可以使用plot函数,具体操作如下:
1. 定义x和y的值,例如:
x = 1:10;
y = x.^2;
2. 使用plot函数绘制线条,例如:
plot(x, y);
3. 如果需要添加多条线条,可以在同一个图中使用多个plot函数,例如:
x = 1:10;
y1 = x.^2;
y2 = x.^3;
plot(x, y1);
hold on;
plot(x, y2);
阅读全文