📄 plots.m
字号:
D = importdata('automix/output_theta7.data', ' ');
nc = (size(D,2)+1)/3;
if nc<=4
sp = [2 2];
else
sp = [3 3];
end
figure(1); clf;
for ci=1:nc
subplot(sp(1),sp(2),ci);
hist(D(:,1+(ci-1)*3),40);
end
figure(2); clf;
for ci=1:nc
subplot(sp(1),sp(2),ci);
hist(D(:,2+(ci-1)*3),40);
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -