plots of network responses and actual values

2 Ansichten (letzte 30 Tage)
jeff amponsah
jeff amponsah am 23 Dez. 2016
Beantwortet: mizuki am 30 Dez. 2016
how to get the plots of system or network model responses and measured values

Antworten (1)

mizuki
mizuki am 30 Dez. 2016
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)

Kategorien

Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by