为什么不会在matlab中显示网格线

时间:2015-12-15 14:23:42

标签: matlab matlab-figure matlab-guide

public ActionResult ViewAttachment(string filePath, string fileName)

我正在构建一个GUI,这里是绘图按钮回调函数。我有上面的代码,当我绘制它时,网格线只出现在幅度图而不是速度图上,我如何才能显示两个图的网格线。

1 个答案:

答案 0 :(得分:2)

grid on替换为:

grid (handles.velocity_axes,'on')
grid (handles.amplitude_axes,'on')

这是因为grid的命令格式仅适用于当前轴gca。在特定轴上绘图不会使这些轴成为当前轴,因此第二个grid on将再次应用于当前轴,这恰好是振幅图。