MATLAB: How can I access the weight??? and bias?

Deep Learning Toolboxhow can i access the weight??? and bias??

hi I am a beginer. after design a perceptron neural network how can I access the weight??? and bias?? I dont mean sim(net). Kindly guide me. Thanks,

Best Answer

If you you normalize your inputs and targets using maxmin or mapstd, the function for the normalized variables is
yn = B2 + LW*tansig(IW*xn+B1);
Hope this helps.
Thank you for formally accepting my answer
Greg