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

📄 hdda_demo.m

📁 高维数据判别分析程序!数据挖掘及图像分析利器!matlab版!
💻 M
字号:
% High Dimensionality Discriminant Analysis (demonstration)%% Authors: C. Bouveyron <charles.bouveyron@inrialpes.fr> - 2004-2006% % Reference: C. Bouveyron, S. Girard and C. Schmid, "High Dimensional Discriminant Analysis",% 		 Communications in Statistics, Theory and methods, in press, 2007.fprintf('\n- Loading of simulated high-dimensional data\n')fprintf('load(''hd_data.mat'');\n')load('hd_data.mat'  );fprintf('\n- Press the keyboard to continue ...\n\n'), pause()fprintf('- Looking for the model with the smallest BIC value\n')fprintf('prms =hdda_learn(X,''model'',''best'',''seuil'',0.2);\n')prms = hdda_learn(X,'model','best','seuil',0.2);fprintf('\n- Press the keyboard to continue ...\n\n'), pause()fprintf('- Learning parameters of a specific model\n')fprintf('prms = hdda_learn(X,''model'',''AiBQiDi'',''seuil'',0.2)\n');prms = hdda_learn(X,'model','AiBQiDi','seuil',0.2);fprintf('\n- Press the keyboard to continue ...\n\n'), pause()fprintf('- Classification of the test data using the learned model\n')fprintf('[cls,P] = hdda_classif(prms,Y)\n');[cls,P] = hdda_classif(prms,Y);

⌨️ 快捷键说明

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