%Main example: MakeSignal1 [W,b,err]=WidHoff1(X,T,0.153,1); plot(err) % Movie example (uncomment) % In this case, we look to see what the learning rate does to the error alpha=linspace(0.01,0.8,40); for j=1:40 [W,b,err]=WidHoff1(X,T,alpha(j),1); plot(err) M(j)=getframe(); pause(0.1); end movie(M,5)