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

📄 exp.m

📁 实现地震勘探中
💻 M
字号:
function ds=exp(ds)% Function takes the exponential function of the traces of seismic datasets% or of the non-depth curves of well logs.%% Written by: E. R.: November 23, 2005% Last updated: January 29, 2008: Handle well logs % UPDATE HISTORY%       September 18, 2006: Handle structure arraysif isstruct(ds)     if strcmp(ds(1).type,'seismic')      for ii=1:numel(ds)         ds(ii).traces=exp(ds(ii).traces);      end   elseif strcmp(ds(1).type,'well_log')      for ii=1:numel(ds)         ds(ii).curves(:,2:end)=exp(ds(ii).curves(:,2:end));      end   end   else   error('Operator "exp" is not defined for this argument.')end

⌨️ 快捷键说明

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