dispplust.m
来自「地震中常用的一些偏移程序」· M 代码 · 共 2 行
M
2 行
function dispplust
% Display of the average Plus Time values with their
% corresponding standard deviation and fold for each receiver
f=gcf;
fbcoord=refdata('get','fbcoord');
plust=refdata('get','plust');
% Figure split in three part, first the Plus Time average values,
% second the corresponding standard deviation, and third the fold
figure('menubar','none');
coordaxes = axes('position',[.1 .7 .8 .25]);
stdaxes = axes('position', [.1 .4 .8 .25]);
foldaxes = axes('position',[.1 .1 .8 .25]);
% Plus Time average values
axes(coordaxes);
hold on;
plot(plust(1,:),plust(2,:),'color','b','linestyle','-.')
ylabel('Plus Time (ms)')
title('Plus time')
% Standard deviation
axes(stdaxes);
hold on;
plot(plust(1,:),plust(4,:),'color','b','linestyle','*')
ylabel('Standard deviation (ms)')
% Fold
axes(foldaxes);
hold on;
plot(plust(1,:),plust(3,:),'color','b','linestyle','+')
ylabel('Fold')
xlabel('Coordinate (m)')
set(gcf,'units','pixels','position',[0 0 864 720]);
figure(f); set(gcf,'menubar','none');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?