plots.m
来自「he AutoMix package is a C program for Un」· M 代码 · 共 23 行
M
23 行
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 + =
减小字号Ctrl + -
显示快捷键?