Neural Network Toolbox
  Go to function:
    Search    Help Desk 
newsom    Examples   See Also

Create a self-organizing map

Syntax

net = newsom(PR,[d1,d2,...],tfcn,dfcn,olr,osteps,tlr,tnd)

Description

Competitive layers are used to solve classification problems.

net = newsom (PR,[D1,D2,...],TFCN,DFCN,OLR,OSTEPS,TLR,TND) takes,

and returns a new self-organizing map.

The topology function TFCN can be hextop, gridtop, or randtop. The distance function can be linkdist, dist, or mandist.

Properties

Simms consist of a single layer with the negdist weight function, netsum net input function, and the compet transfer function.

The layer has a weight from the input, but no bias. The weight is initialized with midpoint.

Adaption and training are done with adaptwb and trainwb1, which both update the weight with learnsom.

Examples

The input vectors defined below are distributed over an 2-dimension input space varying over [0 2] and [0 1]. This data will be used to train a SOM with dimensions [3 5].

Here the SOM is trained and the input vectors are plotted with the map which the SOM's weights have formed.

See Also

sim, init, adapt, train, adaptwb, trainwb1



[ Previous | Help Desk | Next ]