-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathl_gd.m
36 lines (32 loc) · 960 Bytes
/
l_gd.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
function description=l_gd(wlog,mnem)
% Get the description of the 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
%
% description=l_gd(wlog,mnem);
% INPUT
% wlog log data set
% mnem curve mnemonic
% OUTPUT
% description string with description of curve with mnemonic "mnem"
global S4M
mnems=wlog.curve_info(:,1);
if S4M.case_sensitive
idx=find(ismember(mnems,mnem));
else
idx=find(ismember(lower(mnems),lower(mnem)));
end
if length(idx) == 1
description=wlog.curve_info{idx,3};
return
end
% Handle error condition
if isempty(idx)
disp([' Curve "',mnem,'" not found. Available curves are:'])
disp(mnems')
else
disp([' More than one curve found: ',cell2str(mnems(idx),', ')])
end
error(' Abnormal termination.')