How to plot an AR/ARMA model after its estimate
이전 댓글 표시
Hello everyone,
I would like to ask about the plotting of an AR/ARMA model after its estimate.
I got a timeseries, let's call it y, and I would like to make an AR/ARMA model to best fit the data. So, I define a model, Md1, and then I try to fit it in my data.
An example code is this:
y = rand(100,1);
Md1 = arima(10,0,0)
EstMd1 = estimate(Md1, y)
After its estimate, how can I actually plot it ? It would be really helpful if I could display the AR/ARMA model in the same plot as the "noised" data, y.
Thank you in advance
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 System Identification Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!