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

📄 visualize_model.m

📁 this file is leverage algorithm written in matlab as m-file and tested in matlab.so anyone can ue th
💻 M
字号:
function visualize_model(model,labels)

% visualisation of the Kohonen/CPANN map results 
% visualize_model opens a GUI figure for exploring the results of Kohonen or CPANN maps
%
% visualize_model(model,labels);
%
% input:
%   model       model structure
%
% optional input
%   labels      label vector [n x 1]
% 
% see the HTML HELP files (help.htm) for details and examples
%
% version 1.0 - may 2007
% Davide Ballabio
% Milano Chemometrics and QSAR Research Group
% www.disat.unimib.it/chm

if nargin < 2
    visualize_map(model,[])
elseif nargin == 2
    visualize_map(model,labels)
end

⌨️ 快捷键说明

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