gm_errmsg.m
来自「算断裂的」· M 代码 · 共 12 行
M
12 行
function gm_errmsg(filename)disp(sprintf('You have executed m-file %s.m. This m-file is not meant', filename))disp('to be executed. Instead, you should be executing a mex file named')disp(sprintf('%s. The fact that %s.m has been executed means that either QMG is not', filename, filename))disp('fully built, and hence some mex files are missing, or else your Matlab')disp('path is not set up correctly. The path should be set by the file named')disp('startup.m in QMG_ROOT/ex. This file should be run prior to executing')disp('any QMG files.')emsg = sprintf('missing mex file %s', filename);error(emsg)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?