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 CenterFile Exchange에서 Sequence 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