| Products & Services | Solutions | Academia | Support | User Community | Company |
| Download Product Updates | | | Get Pricing | | | Trial Software |
| Documentation → Neural Network Toolbox |
| Contents | Index |
Batch self-organizing map weight learning function
learnsomb is the batch self-organizing map weight learning function.
learnsomb(W,P,Z,N,A,T,E,gW,gA,D,LP,LS) takes several inputs:
| dW |
S x R weight (or bias) change matrix |
| LS |
New learning state |
Learning occurs according to learnsomb's learning parameter, shown here with its default value:
| LP.init_neighborhood |
3 |
Initial neighborhood size |
|
| LP.steps |
100 |
Ordering phase steps |
learnsomb(code) returns useful information for each code string:
| 'pnames' |
Returns names of learning parameters. |
| 'pdefaults' |
Returns default learning parameters. |
| 'needg' |
Returns 1 if this function uses gW or gA. |
This example defines a random input P, output A, and weight matrix W for a layer with a 2-element input and 6 neurons. This example also calculates the positions and distances for the neurons, which appear in a 2 x 3 hexagonal pattern.
p = rand(2,1); a = rand(6,1); w = rand(6,2); pos = hextop(2,3); d = linkdist(pos); lp = learnsomb('pdefaults');
Because learnsom only needs these values to calculate a weight change (see Algorithm).
You can create a standard network that uses learnsomb with newsom. To prepare the weights of layer i of a custom network to learn with learnsomb:
To train the network (or enable it to adapt):
learnsomb calculates the weight changes so that each neuron's new weight vector is the weighted average of the input vectors that that neuron and neurons in its neighborhood responded to with an output of 1.
The ordering phase lasts as many steps as LP.steps.
During this phase, the neighborhood is gradually reduced from a maximum size of LP.init_neighborhood down to 1, where it remains from then on.
| Provide feedback about this page |
![]() | learnsom | learnwh | ![]() |

Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
| © 1984-2009- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |