formwb
Form bias and weights into single vector
Syntax
formwb(net,b,IW,LW)
Description
formwb(net,b,IW,LW) takes a neural network and bias
b, input weight IW, and layer weight
LW values, and combines the values into a single vector.
Examples
Here a network is created, configured, and its weights and biases formed into a vector.
[x,t] = simplefit_dataset; net = feedforwardnet(10); net = configure(net,x,t); wb = formwb(net,net.b,net.IW,net.LW)
Version History
Introduced in R2010b
See Also
getwb | setwb | separatewb