📄 pad.m
字号:
function [dataout]=pad(datain,padding)% [dataout]=pad(datain,padding)%%This function just addings zeros to the end of the data%% padding is the amount of time in seconds to be added to the end of the data%% Warning: The program does not check for unreasonable parameters%%Written by Marko Mah February 1999%$Id: pad.m,v 3.0 2000/06/13 19:21:01 gilles Exp $%$Log: pad.m,v $%Revision 3.0 2000/06/13 19:21:01 gilles%Release 3%%Revision 2.0 1999/05/21 18:46:11 mah%Release 2%%Revision 1.1 1999/02/16 20:12:47 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.ca disp('[dataout]=pad(datain,padding)')smpint=datain.fh{8}; %smpint is the sampling intervaltrclengthold=datain.fh{7}; %trclength is the trace lengthnrec=datain.fh{12}; %nrec is number of records is filenppad=round(padding/smpint); %nppad is the number of zeros to add to the end of each tracetrclengthnew=trclengthold+nppad; %trclengthnew is the new trace lengthtrcendtime=(trclengthnew-1)*smpint; %trcendtime is the new trace end timedataout=datain;dataout.fh{7}=trclengthnew; %updates the number of points per tracedataout.fh{10}=trcendtime; %updates the trace end timefor COUNT=1:nrec [trclength,ntraces]=size(datain.dat{COUNT}); %ntraces is the number of traces in the record dataout.dat{COUNT}=zeros(trclengthnew,ntraces); %zeros the output data dataout.dat{COUNT}(1:trclength,:)=datain.dat{COUNT}; %copies the input data to the output dataend %for COUNT
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -