MATLAB: The much step forecast with usage of the recurrence neural networks

Deep Learning Toolboxnetworks

How it is possible to make the multistage forecast with usage of the recurrence networks?

Best Answer

You have to fill in the details. The main theme is
help/doc narxnet
help/doc preparets
help/doc closeloop
search narxnet greg
Find significant delays from the autocorrelation of t and the cross-correlation of x and t. Create delay row vector inputs ID and FD
Find H by trial and error. First try values 0 <= H <= Hub
Hub = -1 + ceil( (Neq-O) / (I+O+1))
net = narxnet(ID,FD,H);
net.divide.Param = 'divideblock';
[ Xs Xi Ai Ts] = preparets( net, x, {},t );
[net tr Ys Es Xf Af ] = train(net,Xs,Ts,Xi,Ai);
netc = closeloop(net);
[ netc trc Ysc Esc Xfc Afc ] = train(netc, Xs,{},Xic Aic);
plot hold on plot(Ts) plot(Ysc,'r')
trc = trc
Hope this helps.
Greg