📄 example_nmo.m
字号:
%% example_nmo%% Doing and Undoing NMO (constant velocity)%% SeismicLab% Version 1%% written by M.D.Sacchi, last modified Sept., 2001 % sacchi@phys.ualberta.ca%% Copyright (C) 1998 Seismic Processing and Imaging Group%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Change to cdp.sun.su for big endians% Read data [D1,H]=readsegy('cdp.linux.su'); % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%Get the offset and dtoffset = [H.offset];dt = H(1).dt/1000/1000;% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Apply NMO and NMO^-1 with constant v v = 3600;D2 = cvnmo(D1,offset,dt,v, 1);D3 = cvnmo(D2,offset,dt,v,-1);% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Displaynt = max(size(D1));t = 0:dt:(nt-1)*dt;figure(1); clf;subplot(131); wigb(D1,0.9,offset,t); title('Original')subplot(132); wigb(D2,0.9,offset,t); title('NMO')subplot(133); wigb(D3,0.9,offset,t); title('NMO \times NMO^{-1}')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -