MATLAB: Neural Network in Matlab

prediction

I have input and output data to train neural network. How can I predict the following data using Matlab?

Best Answer

For regression or curve-fitting see documentation and an example using
help fitnet
doc fitnet
For classification or pattern recognition see documentation and an example using
help patternnet
doc patternnet
Otherwise provide more thorough information
Hope this helps.
Greg