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.
我正在尝试在 Octave 中绘制图表。如何指定轴的步长?例如,默认x轴的步长为0.5(0---0.5---1---1.5---),我想设为0.1,y轴的步长为0.01。
这会将现有绘图的 x 轴上的步长更改为 0.1:
xbounds = xlim() set(gca, 'xtick', xbounds(1):0.1:xbounds(2))
ylim您可以使用和对 y 轴执行相同的操作'ytick'。
ylim
'ytick'
您可以使用以下代码调整x轴的步长:
set(gca,'XTick,[0:0.1:10]);
为了调整y轴的步长,您可以这样做:
set(gca,'YTick,[0:0.01:10]);