l_gu.m
来自「实现地震勘探中」· M 代码 · 共 38 行
M
38 行
function units=l_gu(wlog,mnem)% Get units of measurement of curve with mnemonic "mnem" from log data set "wlog"% If S4M.case_sensitive is set to false, the case of the curve mnemonic is disregarded.%% Written by: E. R.: December 30, 2000% Last updated: December 12, 2005: use S4M.case_sensitive%% units=l_gu(wlog,mnem);% INPUT% wlog log data set% mnem curve mnemonic% OUTPUT% units units of measurement of curve with mnemonic "mnem"global S4Mmnems=wlog.curve_info(:,1);if S4M.case_sensitive idx=find(ismember(mnems,mnem));else idx=find(ismember(lower(mnems),lower(mnem)));endif length(idx) == 1 units=wlog.curve_info{idx,2}; returnend% Handle error conditionif isempty(idx) disp([' Curve "',mnem,'" not found. Available curves are:']) disp(mnems')else disp([' More than one curve found: ',cell2str(mnems(idx),', ')])enderror(' Abnormal termination.')
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?