I'm completely new to Matlab and I need some help. I'm running a self-organising map with the Neural Networks toolbox.
It all works fine, I use
net = selforgmap([x y]);
net = train(net,mydata);
and then I get access to the nice plots. However I'm interested in the actual numbers generated by the som. 1)How do I access all the data underneath (is there a way to show all the vectors generated by the som package? For example: 2)how do I access the nodes weights? 3)How do I access the list of cases and their allocated Best Matching Units?
Many thanks