plots of network responses and actual values

1 回表示 (過去 30 日間)
jeff amponsah
jeff amponsah 2016 年 12 月 23 日
回答済み: mizuki 2016 年 12 月 30 日
how to get the plots of system or network model responses and measured values

回答 (1 件)

mizuki
mizuki 2016 年 12 月 30 日
You can plot dynamic network time series response in comparison to the actual data with plotresponse.
[X,T] = simplenarx_dataset;
net = narxnet(1:2,20);
[Xs,Xi,Ai,Ts] = preparets(net,X,{},T);
net = train(net,Xs,Ts,Xi,Ai);
Y = net(Xs,Xi,Ai);
plotresponse(Ts,Y)

カテゴリ

Help Center および File ExchangeSequence and Numeric Feature Data Workflows についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by