MATLAB: [Neural Network]How to show the importance of “trainlm”

ann

Hi everyone, I apologize for my bad english. I am using matlab to calculate nnstart of forecasting electricity load. I did the results to predict but I asked him to produce the weights after training. I sat detectors each line of code but can not find trainlm. If you know how to find the key to this number, please show me. Thank you !!! I expect an answer from you.

Best Answer

I did not fully understand your post. However, if you want to display your weights use
IW = net.IW{1,1}
b = net.b{:}
LW = net.LW{2,1}
Hope this helps.
Thank you for formally accepting my answer
Greg