Main Content

plotsomhits

(To be removed) Plot self-organizing map sample hits

plotsomhits will be removed in a future release. For more information, see Transition Legacy Neural Network Code to dlnetwork Workflows.

For advice on updating your code, see Version History.

Syntax

plotsomhits(net,inputs)

Description

plotsomhits(net,inputs) plots a SOM layer, with each neuron showing the number of input vectors that it classifies. The relative number of vectors for each neuron is shown via the size of a colored patch.

This plot supports SOM networks with hextop and gridtop topologies, but not tritop or randtop.

Examples

Plot SOM Sample Hits

x = iris_dataset;
net = selforgmap([5 5]);
net = train(net,x);

Figure Neural Network Training (24-Jan-2026 18:15:47) contains an object of type uigridlayout.

plotsomhits(net,x)

Figure SOM Sample Hits (plotsomhits) contains an axes object. The axes object with title Hits contains 75 objects of type patch, text.

Version History

Introduced in R2008a

collapse all