System Identification toolbox: how to print estimated ARMA-coefficients for each iteration step in armax-algorithm
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Urs Hackstein
el 10 de Jun. de 2020
Respondida: Rajiv Singh
el 11 de Jun. de 2020
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 comentarios
Respuesta aceptada
Rajiv Singh
el 11 de Jun. de 2020
Use "full" display option, as in:
opt=armaxOptions('Display','full');
estimatedPolymodel=armax(iddata(outputdata,inputdata,tsample),[na nb nc nk], opt);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear Model Identification en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!