我很难让 (3,4,i) 图中的所有子图都具有完全相同的轴,都从零开始。我到目前为止的代码如下,但它返回所有具有不同 x 和 y 比例的子图。
有人可以帮忙吗?
%% plot
for i = 1:num_bins;
h = zeros(ceil(num_bins),1);
h(i)=subplot(4,3,i);
plotmatrix(current_rpm,current_torque)
end
linkaxes(h,'xy');
axis([0 30 0 8]);