checkmaxsparsemex.m

来自「Continuous Profile Models (CPM) Matlab T」· M 代码 · 共 15 行

M
15
字号
function checkMaxSparseMEX()if exist('maxSparseMEX')~=3     warnStr=sprintf(...         ['****************************************************************\n'...         'You need to compile the MEX function: maxSparseMEX.c\n'...         'Use something like this at the command prompt: \n'...         '>> mex maxSparseMEX.c\n'...         '(first, inside of Matlab, go to the directory in which this file lies\n'...         ' and it lies inside of CPM_code_v1.0/cpm_functions/MEX/)\n'...         '****************************************************************'...         ]);     error(warnStr);end

⌨️ 快捷键说明

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