• 大小: 4KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 语言: Matlab
  • 标签: 聚类  

资源简介

matlab编写的som自组织神经网络分为三个.m文件,对初学som的同学很有帮助

资源截图

代码片段和文件信息

function net = som(nin map_size)
%SOM Creates a Self-Organising Map.
%
% Description
% NET = SOM(NIN MAP_SIZE) creates a SOM NET with input dimension (i.e.
% data dimension) NIN and map dimensions MAP_SIZE.  Only two-
% dimensional maps are currently implemented.
%
% The fields in NET are
%   type = ‘som‘
%   nin = number of inputs
%   map_dim = dimension of map (constrained to be 2)
%   map_size = grid size: number of nodes in each dimension
%   num_nodes = number of nodes: the product of values in map_size
%   map = map_dim+1 dimensional array containing nodes
%   inode_dist = map of inter-node distances using Manhatten metric
%
% The map contains the node vectors arranged column-wise in the first
% dimension of the array.
%
% See also
% KMEANS SOMFWD SOMTRAIN
%

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-06-11 16:27  som神经网络\
     文件        1727  2005-04-27 22:59  som神经网络\som.m
     文件        5441  2007-03-04 04:08  som神经网络\somtrain.m
     文件        1107  2007-04-10 06:17  som神经网络\som_netlab.m

评论

共有 条评论