📄 mfilter_d2d.m
字号:
function [wfilter,cc_max,shift]=mfilter_d2d(s1,s2,wl,wnoise,increment)% Function computes a single filter "wfilter" which converts each column of s1 into the % corresponding column of s2. If s1, s2 represent seismic data sets, then each column % is a seismic trace and the filter performs dataset-to-dataset matching. % For internal use in s_match_filter. Hence no error checking.%% Written by: E. R.: Auggust 29, 2000% Last updated: July 27, 2006: Clean-up%% [wfilter,cc_max,shift]=mfilter_d2d(s1,s2,wl,wnoise,increment)% INPUT% s1, s2 matrices with the same number of columns and nsamp1 and nsamp2 rows,respectively.% wl filter length% wnoise white noise factor% increment increment for shifts of s2 versus s1 for filter computation % (max(round wl/10)+1 recommended)% OUTPUT% wfilter Wiener filter such that (s2 = wfilter*s1)% cc_max highest value of the crosscorrelation of corresponding traces % of s2 and wfilter*s1% shift shift of s2 required to match s1 to s2. % if shift-(nf-nf/2) is zero and the s1 and s2 have the same start time, then% s1 and s2 are aligned and time zero of the filter is at sample nf/2[nsamp1,ntr]=size(s1);nsamp2=size(s2,1);nshifts=nsamp2-nsamp1+wl;nshifts_reduced=fix((nshifts-1)/increment)+1;matrix=myconvmtx(s1(:,1),wl);matrix=matrix(wl:end-wl+1,:);rhs=myconvmtx(s2(:,1),nshifts);rhs=rhs(nshifts:nsamp2,end:-increment:1);nmat=size(matrix,1);nnmat=nmat*ntr;nnmat0=nnmat;if wnoise > 0 nnmat=nnmat+wl;endMATRIX=zeros(nnmat,wl);RHS=zeros(nnmat,nshifts_reduced);start=1:nmat:nnmat;ende=start+(nmat-1);MATRIX(1:ende(1),:)=matrix;RHS(1:ende(1),:)=rhs;for ii=2:ntr matrix=myconvmtx(s1(:,ii),wl); MATRIX(start(ii):ende(ii),:)=matrix(wl:end-wl+1,:); rhs=myconvmtx(s2(:,ii),nshifts); RHS(start(ii):ende(ii),:)=rhs(nshifts:nsamp2,end:-increment:1);endif wnoise > 0 MATRIX(start(end):nnmat,:)=wnoise*norm(s1(:))*eye(wl); RHS(start(end):nnmat,:)=zeros(wl,nshifts_reduced);endwav=MATRIX\RHS; % Compute filter% Compute correlation coefficientssrhs=MATRIX(1:nnmat0,:)*wav;cc=zeros(nshifts_reduced,1);for jj=1:nshifts_reduced cc(jj)=normcorr(RHS(1:nnmat0,jj),srhs(:,jj));end[cc_max,cidx]=max(cc);shift=(cidx-1)*increment+1; wfilter=wav(:,cidx);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -