problem with feed-forward backpropogation

I want to design a feed-forward back propagation neural network in Matlab. I have data(prices) and all of them (1500days) are in an Excell file. I want the data to be fed into network one by one. I mean days 1,2 and three be fed into network and day 4 is my target, then day 2,3 and 4 will be fed into network and day 5 will be my target and so on. how could I do this? Is there any GUI for doing this? I don't have separated file for my target.

 採用された回答

Greg Heath
Greg Heath 2016 年 2 月 11 日

0 投票

size(data ) = [ 1 1500 ]
input = data(1:end-3);
target = data(4 : end);
Hope this helps
Thank you for formally accepting my answer
Greg

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDeep Learning Toolbox についてさらに検索

質問済み:

2016 年 2 月 9 日

回答済み:

2016 年 2 月 11 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by