Clear Filters
Clear Filters

neural network- nodes

1 view (last 30 days)
Sivakumaran Chandrasekaran
how to asssign weights to a node using matlab code

Accepted Answer

Greg Heath
Greg Heath on 2 Jun 2012
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

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!