ANN Self-Orginizing Map (incremental training)
W = ann_SOM_online(P) W = ann_SOM_online(P,N,itermax,lr,NS,NDEC,topfcn,distfcn)
Training input
Structure of Feature Map
Maximum itercnt for training
Learning Rate
Initial neighbourhood size
Nrighbourhood size decrease rate
Topology Function
Distance Function
This function perform Self-Orginizing incremental training algorithm.
x = rand(2,10); x(:,1:5) = x(:,1:5) + 1; W = ann_SOM_online(x,[2 2]); [y,classes] = ann_SOM_run(W,x) | ![]() | ![]() |