System Identification toolbox: how to print estimated ARMA-coefficients for each iteration step in armax-algorithm
1 回表示 (過去 30 日間)
古いコメントを表示
One can calculate ARMA-coefficients using the armax-algorithm from the Systems Identification Toolbox.
The final set of coefficients can be determined using the following code:
estimatedPolymodel=armax(iddata(outputdata,inputdata,tsample),[na nb nc nk], opt);
ARcoeff=estimatedPolymodel.A
MAcoeff=estimatedPolymodel.B
But how can we print the (preliminary) estimated sets of coefficients at each iteration step of the algorithm?
0 件のコメント
採用された回答
Rajiv Singh
2020 年 6 月 11 日
Use "full" display option, as in:
opt=armaxOptions('Display','full');
estimatedPolymodel=armax(iddata(outputdata,inputdata,tsample),[na nb nc nk], opt);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Linear Model Identification についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!