0

我很难让 (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]);
4

1 回答 1

2

您应该将内存分配移到循环之外:

%% plot 
h = zeros(ceil(num_bins),1);
for i = 1:num_bins;
    h(i)=subplot(4,3,i); 
    plotmatrix(current_rpm,current_torque)
end
linkaxes(h,'xy');
axis([0 30 0 8]);
于 2013-03-21T18:39:28.327 回答