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.
我想用 wblplot 生成的轴绘制一系列 x 和 y 坐标。我怎样才能做到这一点?我不能使用 wblplot。
http://www.mathworks.se/help/stats/wblplot.html
使用semilogx以对数方式缩放 X 轴或对于通常的绘图更改其属性
set(gca, 'XScale', 'log');
更改刻度和网格线间距
set(gca, 'YTick', vectorOfYvalues); set(gca, 'YGrid', vectorOfYvalues);
文档中有关轴属性的更多信息。