predicting unknown value in time series
Hi I have a problem in predicting the next unknown value in
a time series.
How to make this code piece predict value number 601? The
code is a matlab example;
load laser
y = y(1:600)';
y = con2seq(y);
ftdnn_net = newfftd(y,y,[1:8],5);
ftdnn_net.trainParam.show = 10;
ftdnn_net.trainParam.epochs = 50;
p = y(9:end);
t = y(9:end);
Pi=y(1:8);
ftdnn_net = train(ftdnn_net,p,t,Pi);
yp = sim(ftdnn_net,p,Pi);
yp = cell2mat(yp);
e = yp-cell2mat(t);
rmse = sqrt(mse(e))
Thanks
.
Relevant Pages
- Re: wrong R-Squared value??
... get 200 data points (x is a time series; ... What do you mean by a simple trend? ... predicting from the original 200 points. ... original equation. ... (sci.stat.math) - Re: Conventional Indicators Do NOT Work. I have the proof righthere.
... predict any future data point in a "random" time series based on ... The amount of water flowing is determined ... Now stock prices are not perfectly "random" judged by certain ... of predicting future prices based on the time series of past prices. ... (misc.invest.stocks) - Re: Comparison of two sets of time series data
... possible to have tests to show one time series is superior to (or ... Using the daily high series to predict future daily highs? ... Using the closing series to predict future closing prices? ... I probably would be more interested in predicting highs. ... (sci.stat.math) - Re: Comparison of two sets of time series data
... possible to have tests to show one time series is superior to (or ... Using the daily high series to predict future daily highs? ... Using the closing series to predict future closing prices? ... I probably would be more interested in predicting highs. ... (sci.stat.math) - Re: Find a period in multiple delayed time series
... >> techniques there are for analysing multiple time-series with the same ... >> several time series and there is a delay (unknown or known) between ... can see one eruption in each city and a clear delay due to geography. ... (sci.stat.math) |
|