MATLAB: Neural network- nodes

Deep Learning Toolboxneural network. node

how to asssign weights to a node using matlab code

Best Answer

Some types of networks are automatically created with random weights.
Typing net without a semicolon will list all of the properties.
Networks can be randomly initialized using the command init(net) or initnw(net).
Individual weights and biases can be assigned using to the cells net.IW, net.LW and net.b.
Hope this helps.
Greg