Forecast Future Value in Neural Network
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ender Gürler
am 2 Mär. 2016
Beantwortet: Greg Heath
am 4 Mär. 2016
i have a narnet model and i wanna predict future value. i trained and tested my data and take really satisfied result but i wanna forecast future value ,i have some problems.Here is my forecast code:
% Forecast Steps.
N = 20;
TargetSeries;
for i = 1:N
[xc,xic,aic,tc] = preparets(net,{},{},TargetSeries);
yc = net(xc,xic,aic);
TargetSeries(1,end+1) = yc(1,end);
end
Is this a better way to forecast future ? Because i have an issue. Thank You.
0 Kommentare
Akzeptierte Antwort
Greg Heath
am 4 Mär. 2016
Search
NARNET NETC TUTORIAL
Hope this helps.
Thank you for formally accepting my answer
Greg
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!