📄 make_emdc.m
字号:
%MAKE_EMDC Compiles the C codes for Empirical Mode Decomposition%% Note: The compilation can fail on some systems (e.g. MacOS) if Matlab cannot find the C compiler.% In this case, you should either install a C compiler or check Matlab configuration.% The configuration files for compilation are mexopts.sh (Unix / MAC OS) and mexopts.bat (Windows)% use "mex -setup" to choose a configuration file (Unix) or select a compiler (Windows).function make_emdcoldpwd = pwd;path = fileparts(which('make_emdc'));cd(path)mex src/emdc.cmex src/emdc_fix.cmex src/cemdc.cmex src/cemdc_fix.cmex src/cemdc2.cmex src/cemdc2_fix.ccd(oldpwd)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -