MATLAB: We have a set of experimental values which has 2 input and 2 output values. what is the simple prediction rule using Artificial Neural Network and Genetic Algorithm

artificial neural networksgenetic algorithm

What is the procedure for using artificial neural network to obtain a relation between input and output values

Best Answer

1. I cannot recommend the genetic algorithm for neural networks. So far I have seen no successful examples. For example, search both the NEWSGROUP and ANSWERS using
neural genetic
2. If your problem is regression or curvefitting I recommend FITNET. Start by reading the documentation and practicing those examples
help fitnet
doc fitnet
3. If your problem is classification or pattern recognition I recommend PATTERNNET.
help patternnet
doc patternnet
4. Additional practice datasets can be obtained using the commands
help nndatasets
doc nndatasets
5. I have posted zillions of examples in both the NEWSGROUP and ANSWERS. Just include GREG with the search words. For example
greg genetic
greg fitnet
greg patternnet
Hope this helps.
Thank you for formally accepting my answer
Greg