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

📄 tvsqf.m

📁 地震中常用的一些偏移程序
💻 M
字号:
function [tvsq,t]=tvsqf(dt,f,q,flow,fhigh)

% [tvsq,t]=tvsqf(dt,f,q,flow,fhigh)
% [tvsq,t]=tvsqf(dt,f,q,flow)
% [tvsq,t]=tvsqf(dt,f,q)
% 
% TVSQF computes the time variant amplitude and phase spectrum
%    for a particular attenuation constant or 'Q'
% 
% dt= input time sample rate (seconds... recommended > .05)
%     this is only approximate. The actual dt achieved will 
%     vary depending on f.
% f= input frequency coordinate vector (0 to Nyquist) (Create this
%     with FFTRL
% Note: f should be a row vector
% q= Quality factor desired
% flow= lowest frequency of interest
%      ******** default= 5hz *********
% fhigh= highest frequency of interest  
%      ******** default= .95*f(length(f)) 
% tvsq= ouput time variant spectral matrix (complex)
% t= output time coordinate vector for tvsq. (The frequency 
%    coordinate vector is f).
%
% The matrix tvsq has an amplitude spectrum given by:
%      abs(tvsq)= exp(-pi*t*f/q)*bandpass(flow,fhigh)
% and a phase spectrum which is the hilbert transform (over f)
% of the log of this amplitude spectrum.
%
% by G.F. Margrave, May 1991
%
% NOTE: It is illegal for you to use this software for a purpose other
% than non-profit education or research UNLESS you are employed by a CREWES
% Project sponsor. By using this software, you are agreeing to the terms
% detailed in this software's Matlab source file.
 
% BEGIN TERMS OF USE LICENSE
%
% This SOFTWARE is maintained by the CREWES Project at the Department
% of Geology and Geophysics of the University of Calgary, Calgary,
% Alberta, Canada.  The copyright and ownership is jointly held by 
% its author (identified above) and the CREWES Project.  The CREWES 
% project may be contacted via email at:  crewesinfo@crewes.org
% 
% The term 'SOFTWARE' refers to the Matlab source code, translations to
% any other computer language, or object code
%
% Terms of use of this SOFTWARE
%
% 1) Use of this SOFTWARE by any for-profit commercial organization is
%    expressly forbidden unless said organization is a CREWES Project
%    Sponsor.
%
% 2) A CREWES Project sponsor may use this SOFTWARE under the terms of the 
%    CREWES Project Sponsorship agreement.
%
% 3) A student or employee of a non-profit educational institution may 
%    use this SOFTWARE subject to the following terms and conditions:
%    - this SOFTWARE is for teaching or research purposes only.
%    - this SOFTWARE may be distributed to other students or researchers 
%      provided that these license terms are included.
%    - reselling the SOFTWARE, or including it or any portion of it, in any
%      software that will be resold is expressly forbidden.
%    - transfering the SOFTWARE in any form to a commercial firm or any 
%      other for-profit organization is expressly forbidden.
%
% END TERMS OF USE LICENSE

% set defaults
 if nargin<=4
   fhigh=.95*f(length(f));
 end
 if nargin<=3
  flow=5.0;
 end
% compute time coordinate vector
% the vector should be such that a FFT gives the same df as
% the frequency axis of the tvsq
 nf=length(f);
 df=f(2)-f(1);
% compute the length of a complex time series with this df
 tmax=(nf-1.5)/((nf-1)*df);
 nt=round(tmax/dt)+1;
% move to next power of 2
 nt=2.^nextpow2(nt);
 dt= 1./(nt*df);
 tmax=(nt-1)*dt;
 t=0.:dt:tmax;
% compute the amplitude spectrum of the bandpass filter
 nflow=round(flow/df);
 hlow=hanning(2*nflow+1)';
 nfhigh=nf-round(fhigh/df);
 hhigh=hanning(2*nfhigh+1)';
 nones= nf-nflow-nfhigh;
 Filt=[hlow(1:nflow) ones(1,nones) hhigh(nfhigh+2:length(hhigh))];
% compute the log amplitude spectrum of the bandlimited Q filter
% and then its hilbert transform
 tvsq=zeros(length(t),length(f));
 for jt=1:length(t)
  temp= (-pi*t(jt)/q)*f + log(Filt); % log amplitude spectrum (one sided)
% reconstruct the symmetric spectrum
  L1=1:length(temp);L2=length(temp)-1:-1:2;
  symspec=[temp(L1) conj(temp(L2))];
%  symspec=symspec+i*zeros(size(symspec));
  symspec= (conj(hilbm(symspec))); % hilbert transform
% now exponentiate
  tvsq(jt,:)=exp(symspec(1:length(temp)));
  tvsq(jt,1)=2.*eps;tvsq(jt,length(f))=2.*eps;
 end
 










⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -