MATLAB: How to give input from a database to a Neural network and save the result to a database

neural networks

I have trained a Neural network for predicting credit card limits. I have saved the network with the work space with .mat extension. How can I give input from a database through web based GUI and get the result to the database again?

Best Answer

1. You have to load the input into the workspace of the directory containing the net. See the documentation
help load
doc load
2. output = net(input);
3. Save the output into desired workspace.
help save
doc save
Hope this helps. Greg