s_plot.m

来自「地震、测井方面matlab代码,解释的比较详细」· M 代码 · 共 27 行

M
27
字号
function s_plot(seismic)
% "Quick-look" plot of seismic data. Color plot if there are more than 
% S4M.ntr_wiggle2color (usually 101) traces; otherwise wiggle trace plot
%.For more sophisticated plots use functions "s_wplot" or "s_cplot".
% Written by: E. R., August 3, 2001
% Last updated: 
%
% 	s_plot(seismic)
% INPUT
% seismic seismic structure or an array

global S4M

if isstruct(seismic)
   ntr=size(seismic.traces,2);
else
   ntr=size(seismic,2);
end

if ntr > S4M.ntr_wiggle2color
   s_cplot(seismic,{'scale','yes'})
else
   s_wplot(seismic,{'scale','yes'})
end


⌨️ 快捷键说明

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