MATLAB: How to do Single step ahead prediction of Lorenz chaotic time series using Feed Forward Backpropogation Neural Network.

Deep Learning Toolboxfeed forward neural networkone step ahed predictiontime series prediction

I want to do one step ahead prediction of lorenz chaotic time series data with 3*20000 data.
how to do that.
It will be also help full to get any example to perform one step ahead prediction of chaotic time series using feed forward neural network with delta learning rule.
thanks in advance.

Best Answer

d = 1
x = f(:,1:N-d);
t = f(:,1+d:N);
rng(0)
H =10 % default
net = fitnet(H);
net.divideFcn = 'dividetrain';
...
help fitnet
doc fitnet
Search using
greg fitnet Ntrials % to find best of multiple designs