Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
X我想在 Matlab Dft 图中增加 - 轴上的刻度线数量(幅度与频率)。精度还可以,但我想增加X-axis 上显示的值的数量。
X
要设置XTick当前轴的属性(gca,获取当前轴),请使用:
XTick
gca
set(gca,'XTick',tickVector);
是tickVector一个包含所需刻度位置的向量。
tickVector
您可以通过打开次要刻度线来实现此目的。
set(gca,'XMinorTick','on');
当您只需要更多时,这可以避免您确定明确的刻度线位置。