iscurve.m
来自「实现地震勘探中」· M 代码 · 共 19 行
M
19 行
function bool=iscurve(wlog,mnem)% Returns true if mnem is a curve mnemonic in log structure "wlog"% and false otherwise%% Written by: E. R.: December 17, 2003% Last updated:%% bool=iscurve(wlog,mnem)% INPUT% wlog log structure% mnem curve mnemonic% OUTPUT% bool boolean variable; set to true if mnem is a curve mnemonic in % log structure "wlog" and false otherwise[dummy,ierr]=curve_index1(wlog,mnem); %#ok First output argument is not requiredbool=~ierr;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?