ANN ADALINE training function (batch training)
[w,b] = ann_ADALINE(P,T) [w,b] = ann_ADALINE(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 batch training algorithm.