How to get multiple output response using time series response of ANN deep learning toolbox?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm currently solving a multi-input-multi-output time series problem using ANN (deep learning toolbbox) on MATLAB through time series app using NARX. I have a total of 10 inputs and 2 outputs. When I generate the plot response, I can only get the plot for the first output (response of output element 1 for time series 1). How do I get the response plot for the next output? Or can I get a plot response that plot for both response simultaneously? Thank you in advanced.
0 Kommentare
Antworten (1)
Philip Brown
am 21 Jun. 2021
You can use the outputIndex option for plotresponse.
plotresponse(T,Y,'outputIndex',2);
You might also want to set the sampleIndex option. See help plotresponse for more details.
It's not currently possible to set these options in the time series app, but you could generate code, and then edit this code to provide the outputIndex option there.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Sequence and Numeric Feature Data Workflows 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!