【发布时间】:2023-03-31 15:21:01
【问题描述】:
给定一组过去的变量值,如何使用 MATLAB 的 narnet 预测未来的值?
给定我的 MATLAB 的神经网络时间序列应用程序的示例如下:
T = oil_dataset;
net = narnet(1:2,10);
[Xs,Xi,Ai,Ts] = preparets(net,{},{},T);
net = train(net,X,T,Xi,Ai);
view(net) Y = net(Xs,Xi,Ai)
plotresponse(T,Y)
如何预测oil_dataset 的接下来的 10 个值?
【问题讨论】:
-
X来自哪里?
标签: matlab neural-network time-series