发布网友 发布时间:2022-04-20 17:15
共5个回答
热心网友 时间:2022-06-24 14:58
matlab中GRID ON /OFF 显示或关闭画图中的个网线 。
grid on 是matlab中的一种函数,表示在画图的时候添加网格线。
例如:
例如x=1:10;y=x+2; plot(x,y)执行这样的程序画出的图
而如果改成x=1:10;y=x+2;plot(x,y), grid on执行这样的程序画出的图
热心网友 时间:2022-06-24 14:59
在matlab中输入 help grid.得到如下提示
GRID Grid lines.
GRID ON adds major grid lines to the current axes.
GRID OFF removes major and minor grid lines from the current axes.
GRID MINOR toggles the minor grid lines of the current axes.
GRID, by itself, toggles the major grid lines of the current axes.
GRID(AX,...) uses axes AX instead of the current axes.
GRID sets the XGrid, YGrid, and ZGrid properties of
the current axes.
即在画图中设置网格线
热心网友 时间:2022-06-24 14:59
GRID ON /OFF 显示或关闭画图中的个网线
具体的可以在MATLAB中输入 help grid查看
热心网友 时间:2022-06-24 15:00
grid on 就是FIGURE上有网格 grid off 没有网格
热心网友 时间:2022-06-24 15:01
作图中用来画网格线的。