⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 install_emd.m

📁 经验模式分解源码 学习希尔波特黄变换的参考程序 源于Internet网络
💻 M
字号:
%INSTALL_EMD.M install the EMD package% add the following locations to Matlab's path:% <EMD_BASEDIR>% <EMD_BASEDIR>/emd% <EMD_BASEDIR>/utils% <EMD_BASEDIR>/examples/NSIP2003% <EMD_BASEDIR>/examples/SPL2007%% where <EMD_BASEDIR> is the directory containing install_emd.m%% and compiles the C codes%% IMPORTANT: After running INSTALL_EMD you must run the "savepath" command to save the installation% but be careful that if you previously removed parts of the path (using e.g. the "rmpath" command) % these will be permanently removed after you run "savepath"function install_emdbase_dir = fileparts(which('install_emd'));addpath(base_dir)addpath([base_dir,'/EMDs'])addpath([base_dir,'/utils'])addpath([base_dir,'/examples/NSIP2003'])addpath([base_dir,'/examples/SPL2007'])status=make_emdc;if all(status==0)  fprintf('\nCompilation successfull\n\n')elseif all(status~=2)  fprintf('\nCompilation successfull.\n\n')  fprintf('Some codes can run faster if they are compiled with a C compiler\n')  fprintf('that handles the C99 complex data type ("complex.h"). See details above.\n\n')else  fprintf('\nSome errors occurred during compilation. See details above.\n\n')enddisp('Installation complete. Run index_emd for a list of functions.')fprintf('\n')disp('IMPORTANT: After running INSTALL_EMD you must run the "savepath" command to save the installation')disp('but be careful that if you previously removed parts of the path (using e.g. the "rmpath" command)')disp('these will be permanently removed after you run "savepath"')

⌨️ 快捷键说明

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