📄 som_which_neuron.m
字号:
function [cord_row,cord_col] = som_which_neuron(ind,W_reshape_size)
% som_which_neuron finds the map coordinates of a neuron
%
% see the HTML HELP files (help.htm) for details
cord_col = mod(ind,W_reshape_size^0.5);
if cord_col == 0
cord_col = W_reshape_size^0.5;
end
cord_row = (ind - cord_col)/(W_reshape_size^0.5) + 1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -