istype.m

来自「实现地震勘探中」· M 代码 · 共 35 行

M
35
字号
function bool=istype(structure,typ)% Check if structure has field "type" and if it matches the string "typ",% (or one of the strings in cell array "typ").%% Written by: E. R.: September 1, 2003% Last updated: January 27, 2008: Update check of "type"%%            bool=istype(structure,typ)% INPUT% structure  Matlab structure% typ        string or cell array of strings; possible strings are: 'seismic',%            'well_log','table','pdf','pseudo-wells'% OUTPUT% bool       logical variable; set to true if "structure has field "type"%            and if it is equal to string "typ";%            otherwise it is set to false% EXAMPLES%            seis=s_data;%            istype(seis,'seismic')%            istype(seis,{'well_log','seismic'})% UPDATE HISTORY%            April 28, 2006: input argument "typ" can be a cell arrayif ~ischar(typ) && ~iscell(typ)   error(['Input argument "',typ,'" must be a string or a cell array of strings.'])endbool=false;if ~isempty(structure)  &&  isstruct(structure(1))   if isfield(structure(1),'type')      bool=any(ismember({structure(1).type},typ));   endend

⌨️ 快捷键说明

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