How to plot an AR/ARMA model after its estimate

3 views (last 30 days)
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

Answers (0)

Categories

Find more on System Identification Toolbox 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!