MATLAB: About neural net fitting (at neural network toolkit)

neural network

How can I found the weights in funtion "net"? I want to use this neural network(train is done.) as a C code.

Best Answer

IW = net.IW
B = net.B
LW = net.LW
Thank you for formally accepting my answer
Greg