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

📄 shft.m,v

📁 具有特色的地震数据处理源码
💻 M,V
字号:
head	3.0;access;symbols;locks; strict;comment	@// @;3.0date	2000.06.13.19.22.03;	author gilles;	state Exp;branches;next	2.0;2.0date	99.05.21.18.46.35;	author mah;	state Exp;branches;next	1.4;1.4date	99.05.21.15.11.38;	author mah;	state Exp;branches;next	1.3;1.3date	99.05.21.15.10.41;	author mah;	state Exp;branches;next	1.2;1.2date	99.02.09.21.58.02;	author mah;	state Exp;branches;next	1.1;1.1date	99.01.26.19.45.45;	author mah;	state Exp;branches;next	;desc@performs static shift from trace header word@3.0log@Release 3@text@function [dataout]=shft(datain,scale,word)%[dataout]=shft(datain,scale,word)%%This function requires input data in DSI format.%A time shift will be applied or removed on a per trace basis%by an amount given in trace header word 'word'.%Shifts are to the nearest sampling point. %%scale is what the desired time shifts will be multiplied by%1.0: Apply static shift%-1.0: Remove previously applied shifts%%word is the trace header word containing the time in seconds%by which the trace is to be shifted%%Shifts will be applied to all traces and records.%%Convention: positive value = shift traces down%            negative value = shift traces up%% Warning: Program does not check for reasonable parameters%%DSI customized VSP processing software%Written by Marko Mah January 1999%$Id: shft.m,v 2.0 1999/05/21 18:46:35 mah Exp gilles $%$Log: shft.m,v $%Revision 2.0  1999/05/21 18:46:35  mah%Release 2%%Revision 1.4  1999/05/21 15:11:38  mah%eof problem%%Revision 1.3  1999/05/21 15:10:41  mah%eof problem%%Revision 1.2  1999/02/09 21:58:02  mah%fixed up shift because it was off by one sample%%Revision 1.1  1999/01/26 19:45:45  mah%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]=shft(datain,scale,word)');dataout=datain;nrec=datain.fh{12}; %number of recordsint=datain.fh{8}; %sampling interval (sec)samples=datain.fh{7}; %number of points per tracefor COUNT1=1:nrec [a,ntraces]=size(datain.dat{COUNT1}); %ntraces is the number of traces in the record dataout.dat{COUNT1}(:,1:ntraces)=0; %initialize traces for COUNT2=1:ntraces  %takes shift times from trace header word 'word'  shift=datain.th{COUNT1}(word,COUNT2);  shift=shift*scale; %multiplies shift by scale to get "total" shift  index=round(abs(shift)/int); %converts shift from time to samples  if index==0 %no shift   dataout.dat{COUNT1}(:,COUNT2)=datain.dat{COUNT1}(:,COUNT2);  elseif shift<0 %shift upwards   dataout.dat{COUNT1}(1:(samples-index),COUNT2)=datain.dat{COUNT1}(index+1:samples,COUNT2);  else %shift downwards   dataout.dat{COUNT1}(index+1:samples,COUNT2)=datain.dat{COUNT1}(1:(samples-index),COUNT2);  end %if index end %for COUNT2end %for COUNT1@2.0log@Release 2@text@d27 1a27 1%$Id: shft.m,v 1.4 1999/05/21 15:11:38 mah Exp mah $d29 3@1.4log@eof problem@text@d27 1a27 1%$Id: shft.m,v 1.3 1999/05/21 15:10:41 mah Exp mah $d29 3@1.3log@eof problem@text@d27 1a27 1%$Id: shft.m,v 1.2 1999/02/09 21:58:02 mah Exp mah $d29 3d92 3@1.2log@fixed up shift because it was off by one sample@text@d27 1a27 1%$Id: shft.m,v 1.1 1999/01/26 19:45:45 mah Exp mah $d29 3d88 1a88 1end %for COUNT1@1.1log@Initial revision@text@d27 4a30 2%$Id: Exp $%$Log: $d33 1a66 1tstart=datain.fh{9}; %start time (sec)d76 1a76 1  index=round((abs(shift)-tstart)./int); %converts shift from time to samplesd80 1a80 1   dataout.dat{COUNT1}(1:(samples-index+1),COUNT2)=datain.dat{COUNT1}(index:samples,COUNT2);d82 1a82 1   dataout.dat{COUNT1}(index:samples,COUNT2)=datain.dat{COUNT1}(1:(samples-index+1),COUNT2);@

⌨️ 快捷键说明

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