make_emdc.m

来自「2007版EMD源程序」· M 代码 · 共 21 行

M
21
字号
%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 + =
减小字号Ctrl + -
显示快捷键?