我在 matlab 中有一个有趣的问题。如果我在脚本中运行以下代码并通过选择它并按 F9 来运行它:
figure
subplot(4, 4, [1 2 5 6 9 10]);
plotGrid(spin1HGD, 2); % A function to plot a grid,
% essentially a bunch of patches.
campos([27.8504 -39.0203 71.3373]);
axis equal
我得到下图:
现在,如果我立即运行axis equal
,它实际上会这样做:
这是我的 matlab 终端的屏幕截图:
所以我肯定axis equal
在脚本的末尾运行,然后我必须手动运行它才能工作。
烦人的是,除了这段代码,我什么都不能重现它?什么是交易?