som_which_col.m
来自「MOLMAP multiway toolbox是一个matlab集成工具箱」· M 代码 · 共 19 行
M
19 行
function ind = som_which_col(cord_x,cord_y,W_reshape_size)
% som_which_col changes the map coordinates of a neuron into scalar
%
% 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
ind = cord_x*(W_reshape_size^0.5) - (W_reshape_size^0.5 - cord_y);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?