plots of network responses and actual values
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how to get the plots of system or network model responses and measured values
0 commentaires
Réponses (1)
mizuki
le 30 Déc 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)
0 commentaires
Voir également
Catégories
En savoir plus sur Sequence and Numeric Feature Data Workflows dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!