som_info
Purpose
Display information of the given SOM Toolbox struct(s).
Syntax
som_info(sM)
som_info({sM,sD})
som_info(...,level)
Description
Display the contents of the given SOM Toolbox struct(s). Information
of several structs can be shown if the structs are given in a cell
array. The level of detail can be varied with the second argument.
The number of different levels varies between structs. For map and
data structs, not only the fields, but also some statistics of the
vectors ('.data' and '.codebook' fields) is displayed.
map struct
level 1: name, dimension, topology, dimension, neigborhood function,
mask and training status
level 2: ..., training history
level 3: ..., vector component names, statistics and normalization status
level 4: ..., vector component normalizations
data struct:
level 1: name, dimension, data set completeness statistics
level 2: ..., vector component names, statistics and normalization status
level 3: ..., vector component normalizations
level 4: ..., label statistics
topology struct:
level 1: all fields
train struct:
level 1: all fields
normalization struct:
level 1: method, status
level 2: ..., parameters
Required input arguments
sS (struct) SOM Toolbox struct
(cell array of structs) several structs in a cell array
Optional input arguments
level (scalar) detail level (1-4), default = 1
Examples
som_info(sM)
som_info(sM,4)
som_info(sM.trainhist)
som_info(sM.comp_norm{3})
See also
som_set
| Set fields and create SOM Toolbox structs.
|