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

📄 myerror.m

📁 三谱混合相位子波估计!! 这是我的一篇文章所涉及到的matlab 源代码
💻 M
字号:
function myerror(message)
% Generalization of Matlabs error message for compiled code
% S4M.compiled == 0   same as standard error message
% S4M.compiled == 1   Error message is displayed in dialog window and global
% variable ABORTED is set to logical(1).
% Written by: E. R.: January 25, 2004
% Last updated: May 5, 2005: Message window displayed also if S4M.interactive is true
%
%           myerror(message)
% INPUT
% message   string with error message to display

global S4M ABORTED

if S4M.compiled  |  S4M.interactive
   disp(message)
   myerrordlg(message)
   ABORTED=logical(1);

else
   error(message)
end

⌨️ 快捷键说明

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