MATLAB: Hello how can i use neural network to model the rainfall data

neural networks

what does training and validation and all mean in it do i need to calculate these things or are they given by matlab itself?

Best Answer

NN regressors/curve-fitters are based on N examples of pairs of I-dimensional input data vectors and the corresponding O-dimensional target output vectors.
So to begin, create your input and target matrices.
[ I N ] = size(input)
[ O N ] = size(target)
Then see the documentation and examples for fitnet.
doc fitnet
help fitnet
Finally check NEWSGROUP and ANSWERS for posts using the searchword
fitnet.
Hope this helps.
Greg