Info
此问题已关闭。 请重新打开它进行编辑或回答。
entering new data in Neural Network Time Series Tool
1 次查看(过去 30 天)
显示 更早的评论
When i create a time series network and save it, how should i put new data in the created net and simulate it?
0 个评论
回答(2 个)
Chirag Gupta
2011-7-20
outputs = net(inputs,inputStates,layerStates); % Note inputStates and layerStates are only required for networks with tapped delay lines
1 个评论
Chirag Gupta
2011-7-20
Hi Mohammed,
Typically when you create a TimeSeries network, the network output also acts as the second input (feedback input). Typically for training these netoworks are open loop, requiring you to use function like:
preparets % doc preparets
to configure your inputs.
Once your network has been trained, you can use close the loop on your network.
closed_net = closeloop(net);
view(closed_net); % see the output is automatically fed back as the input
% Simulate with new data
outputs = closed_net(newInputs)
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!