ANN ADALINE training function (incremental training)
[w,b] = ann_ADALINE_online(P,T) [w,b] = ann_ADALINE_online(P,T,alpha,itermax,initfunc)
Training input
Training target
Learning Rate
Maximum Training Iteration
Weight and Bias Initialize functions, either 'rand', 'zeros', or 'ones'
weights for the network
bias for the network
Adaptive Linear Neuron with incremental (going throught data one by one) training algorithm.