MATLAB: Changing the weights in a neural network

MATLABneural networkweight

Using nntool, I can change the weights / bias of certain connections, but I have not found the way to do the same with a script. Is this possible? Thanks

Best Answer

net.IW = ...
net.LW = ...
net.b = ...
Try searching the Newsgroup and/or Answers with
heath net.IW
Hope this helps.
Greg