MATLAB: Neural Network Toolbox weighting value

Deep Learning Toolboxneural network

How to define weighting value manually in matlab neural network toolbox?
Thanks

Best Answer

Typically, all of the functions are automatically intialized with random intial weights in train or configure. A major exception is newrb which chooses the training vector with the highest error on a linear classifier (H=0).
See some of my designs by searching on
greg configure
Note that you must use configure before train when designing multiple nets in a loop.
Hope this helps.
Thank you for formally accepting my answer
Greg