iscurve.m

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

M
20
字号
function bool=iscurve(wlog,mnem)
% Returns logical(1) if mnem is a curve mnemonic in log structure "wlog"
% and logical(0) 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 logical(1) if mnem is a curve mnemonic in 
%         log structure "wlog" and logical(0) otherwise

[index,ierr]=curve_index1(wlog,mnem);

bool=~ierr;


⌨️ 快捷键说明

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