How to get multiple output response using time series response of ANN deep learning toolbox?
4 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Philip Brown
on 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 Comments
See Also
Categories
Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!