matlab plot 设置网格
时间: 2023-10-18 08:25:24 浏览: 240
Matlab-plot.zip_Matlab Plot_plot
要在 MATLAB 中设置网格,可以使用 `grid on` 命令。下面是设置网格的示例代码:
```matlab
x = 1:10; % 示例数据
y = x.^2;
plot(x, y)
grid on
```
在上面的代码中,`plot` 函数用于绘制曲线图,然后使用 `grid on` 命令打开网格显示。运行该代码后,你会看到绘制的曲线上有网格线。
阅读全文