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

📄 param_check.m

📁 基于Matlab的地震数据处理显示和测井数据显示于处理的小程序
💻 M
字号:
function ier=param_check(structure)% Check if parameter-related fields of a structure are compatible%% Written by: E. R.: September 12, 2003% Last updated:%%       ier=param_check(structure)% INPUT% structure   structure whose parameter fields need to be tested% OUTPUT% ier    logical variable; error if ier == logical(1)global S4Mier=logical(0);%       Check parameters (if there are any)if isfield(structure,'parameter_info')   fields=fieldnames(structure);   if ~iscell(structure.parameter_info)      disp(' Field parameter_info" must be a cell array; other errors may exist.')      ier=logical(1);      return   else      [lparfields,m]=size(structure.parameter_info);      if m ~= 3         disp(' Field "parameter_info" is not a cell array with 3 columns; other errors may exist.')         ier=logical(1);         return      end        %       Check for uniqueness of parameter mnemonics      parfields=structure.parameter_info(:,1);      if S4M.case_sensitive         if length(unique(parfields)) ~= length(parfields)            disp(' Case sensitive parameter mnemonics are not unique:');            disp(cell2str(parfields,', '))            ier=logical(1);            return         end      else         if length(unique(lower(parfields))) ~= length(parfields)            disp(' Case insensitive parameter mnemonics are not unique:');            disp(cell2str(parfields,', '))            ier=logical(1);            return         end      end      index=ismember(parfields,fields);      if ~all(index)         disp(' Field "parameter_info" provides information about the following parameter(s)')         disp('      that is/are not present in the structure:')         disp(['      "',cell2str(parfields(~index),'", "'),'"'])         ier=logical(1);      end      for ii=1:lparfields*3         if ~ischar(structure.parameter_info{ii})            disp(' Entries of field "parameter_info" are not strings')            ier=logical(1);            break         end      end   end  end

⌨️ 快捷键说明

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