📄 noch.m
字号:
function [dataout]=noch(datain,F1,F2,F3,F4)%[dataout]=noch(datain,F1,F2,F3,F4)%%noch filter%%Frequencies <=F1 and >=F4 are untouched%Frequencies between F2 and F3 are zeroed%Frequencies between F2 and F1 as well as between F3 and F4 are linearily%reduced%% All frequencies are in Hertz (Hz)%%DSI customized VSP processing software%%written by Kristen Beaty January, 1998%$Id: noch.m,v 3.0 2000/06/13 19:20:57 gilles Exp $%$Log: noch.m,v $%Revision 3.0 2000/06/13 19:20:57 gilles%Release 3%%Revision 2.0 1999/05/21 18:46:08 mah%Release 2%%Revision 1.2 1999/05/17 17:16:06 mah%fixed help message%%Revision 1.1 1999/01/06 19:09:06 kay%Initial revision%%%Copyright (C) 1998 Seismology and Electromagnetic Section/%Continental Geosciences Division/Geological Survey of Canada%%This library is free software; you can redistribute it and/or%modify it under the terms of the GNU Library General Public%License as published by the Free Software Foundation; either%version 2 of the License, or (at your option) any later version.%%This library is distributed in the hope that it will be useful,%but WITHOUT ANY WARRANTY; without even the implied warranty of%MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU%Library General Public License for more details.%%You should have received a copy of the GNU Library General Public%License along with this library; if not, write to the%Free Software Foundation, Inc., 59 Temple Place - Suite 330,%Boston, MA 02111-1307, USA.%%DSI Consortium%Continental Geosciences Division%Geological Survey of Canada%615 Booth St.%Ottawa, Ontario%K1A 0E9%%email: dsi@cg.nrcan.gc.cadisp('[dataout]=noch(datain,F1,F2,F3,F4)');dataout=datain;nrec=datain.fh{12};int=datain.fh{8}; %sampling intervalNy=1./(int.*2); %Nyquist frequencynpts=datain.fh{7}; %number of points in each traceN=2^(nextpow2(npts)+1); %number of points to be used in fftf=2*Ny*(0:N/2-1)/N; %frequency vector%create filter function in frequency domainx=[1 1 0 0 1 1];xf=[0 F1 F2 F3 F4 f(N/2)];m=interp1(xf,x,f);filt=zeros(N,1);filt(1:N/2)=m;m2=fliplr(m);filt(N/2+1)=1;filt(N/2+2:N)=m2(1:length(m2)-1);%'filt' is filter function in frequency domainfor COUNT=1:nrec %loop over records ntr=datain.th{COUNT}(12,1); %number of traces in this record filtmat=ndgrid(filt,1:ntr);%create filter matrix in_freq=fft(datain.dat{COUNT},N); %performs N points fft on columns out_freq=zeros(N,ntr); %initialize out_freq=in_freq.*filtmat; %multiply in freq. domain out=ifft(out_freq,N); %N points inverse fft dataout.dat{COUNT}=real(out(1:npts,:)); %error check re=real(out(1:npts,1)); im=imag(out(1:npts,1)); for i=npts:-1:1 rat(i)=im(i)./re(i); end; x=find(rat>10^-6); if ~ isempty(x) error('imaginary part of inverse fft is too large'); end %ifend %loop over records
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -