matlab - How to find values of the input data in plotsommaphits -


I used the SOM toolbox in MATLAB or Iris data set. By using the following examples and plotsimhits, I can see how much data values ​​are in each neuron in my neuron grid of the SO. However, I want to know the real data value that is divided into each neuron given in the given SOM configuration. There is no way to do this, this is the example I used.

  net = selforgmap ([8 8]); See (net) [net, tr] = train (net, x); Nntraintool plotsomhits (nets, x)   

It is not difficult plotsomhits results of the simulation of the net "fluffy" bus plots.

So if you simulate it and add "hit" then you have the result!

Basic:

  hit = sum (sim (nets, x) ');   

This was my result in my net case, which matches the numbers in plotsomehits

  hit = 6 5 0 You can learn a lot in this amazing SO answer:  P> 



Comments

Popular posts from this blog

c# - Textbox not clickable but editable -

Matlab transpose a table vector -

ios - Adding an SKSpriteNode to SKScene from a child SKSpriteNode -