我有这样的功能:
plot(f,Body, 'r', f,Walk, 'b', 'LineWidth' , 3);
我想在情节中放置细网格。我该怎么做呢。
试过这个
plot(f,Body, 'r', f,Walk, 'b', 'LineWidth' , 3);
GridVisible = TRUE,
SubgridVisible = TRUE;
但失败了。
尝试在情节线之后添加
grid on
或者 ,
grid minor
要添加标签,请使用 , 属性获取次网格刻度的位置,并使用 ,XMinorTick
属性YMinorTick
将它们添加为标签。在Matlab 文档中查看更多信息。XTickLabel
YTickLabel