How can I generate an AR(1) process with function filter.m?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I tried with this code, but I'm not sure about the result...
e=randn(500,1) b=[1 phi]; y=filter(b,1,e);
Note: phi is the coefficient of the lagged variable.
0 Kommentare
Antworten (1)
Roger Wohlwend
am 24 Sep. 2014
You did not implement an AR(1) but an MA(1) process. It is not possible to generate an AR(1) process with the function filter. You have to do it with a for-loop - or use certain functions of the Econometrics toolbox.
0 Kommentare
Siehe auch
Kategorien
Mehr zu PHY Components 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!