dispavgstd.m

来自「Univ. of Calgary CREWS的免费地震研究软件」· M 代码 · 共 2 行

M
2
字号
function dispavpstd(cvpavg, cvpstd)

f=gcf;

figure('menubar','none')

[nshots tmp] = size(cvpavg);
shots = 1:nshots;

% plot(cvpstd(:,1));
% hold on;
% plot(cvpavg(:,1));

errorbar(cvpavg(:,1), shots, cvpstd(:,1));

xlabel('shot number');
ylabel('xcoordinate');
title('Standard deviation with Cross over point average for the left hand side');

figure
plot(cvpstd(:,2));
hold on;
plot(cvpavg(:,2));
xlabel('shot number');
ylabel('xcoordinate');
title('Standard deviation with Cross over point average for the right hand side');

figure(f); set(gcf,'menubar','none');

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?