How to get multiple output response using time series response of ANN deep learning toolbox?
조회 수: 4 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Philip Brown
2021년 6월 21일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!