visualize_model.m
来自「MOLMAP multiway toolbox是一个matlab集成工具箱」· M 代码 · 共 32 行
M
32 行
function visualize_model(model,labels)
% visualisation of MOLMAP results
% visualize_model opens a GUI figure for exploring the results
%
% visualize_model(model,labels);
%
% input:
% model model structure obtained by model_multiway
%
% optional input
% labels label vector [n x 1], where n is ythe number of multiway
% samples
%
% see the HTML HELP files (help.htm) for extensive explanations, details and examples
%
% The toolbox is freeware and may be used (but not modified)
% if proper reference is given to the authors. Preferably refer to:
% D. Ballabio, V. Consonni, R. Todeschini
% Classification of multiway analytical data based on MOLMAP approach
% Analytica Chimica Acta, in press
%
% version 1.0 - november 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 + =
减小字号Ctrl + -
显示快捷键?