⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 istype.m

📁 基于Matlab的地震数据处理显示和测井数据显示于处理的小程序
💻 M
字号:
function bool=istype(structure,typ)% Check if structure has field "type" and that it matches the string "typ",% or one of the strings in cell array "typ".%% Written by: E. R.: September 1, 2003% Last updated: April 28, 2006: input argument "typ" can be a cell array%%            bool=istype(structure,typ)% INPUT% structure  Matlab structure% typ        string or cell arry of strings, possible strings are: 'seismic',%            'well_log','table','pdf','pseudo-wells'% OUTPUT% bool       logical variable; set to logical(1) if "structure has field "type"%            and if it is set to string "typ"%            otherwise it is set to logical(0)% EXAMPLES%     seis=s_data;%     istype(seis,'seismic')%     istype(seis,{'well_log','seismic'})bool=logical(0);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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -