📄 install.m
字号:
mvstr = version;i = strfind(mvstr,'.');mv = str2num(mvstr(1:i(1)-1))*100 + str2num(mvstr(i(1)+1:i(2)-1));clear mexoptionsif mv < 703 % If Matlab version is older than 7.3 mexoptions{1} = '-DOLDMATLABAPI';else mexoptions{1} = '-largeArrayDims';endmexoptions{2} = '-DNOTHREADS';mex( mexoptions{:}, 'subtract_mu.cpp' )mex( mexoptions{:}, 'errpca_pt.cpp' )mex( mexoptions{:}, 'errpca_diag.cpp' )
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -