I'm going to build up a narx model using two inputs with different input delays for each input. How should i put different input delays in to my network?
Show older comments
inputsarray=[dlngold;day1]; inputs1=con2seq(inputsarray)
target=con2seq(aspilnreturn)
inputSeries = inputs1; targetSeries = target;
inputDelays = 1:1; feedbackDelays = 1:3; hiddenLayerSize = 2; net = narxnet(inputDelays,feedbackDelays,hiddenLayerSize);
[inputs,inputStates,layerStates,targets] = preparets(net,inputSeries,{},targetSeries);
Accepted Answer
More Answers (0)
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!