?? myerror.m
字號:
function myerror(message)% Generalization of Matlabs error message for compiled code% S4M.deployed == 0 same as standard error message% S4M.deployed == 1 Error message is displayed in dialog window and global% variable ABORTED is set to true.%% Written by: E. R.: January 25, 2004% Last updated: May 5, 2005:% myerror(message)% INPUT% message string with error message to displayglobal S4M ABORTEDif S4M.deployed disp(message) myerrordlg(message) ABORTED=true;else error(message)end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -