⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dispavgstd.m

📁 Univ. of Calgary CREWS的免费地震研究软件
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -