How to estimate a model with a positive impulse response, i.e., with only real poles?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I would like to estimate a system model from input and output data that has a purely positive impulse response. If I understand correctly, this is equivalent to all the poles of the transfer function being real.
One possible solution to the problem is given by the "process estimation" methods, which by default enforce real poles. For instance,
load dryer2;
dry = iddata(y2,u2,0.08);
opt = procestOptions('Focus', 'simulation');
sys = procest(dry, 'P3DZ', opt);
figure;
impulse(sys);
does exactly what I want (see below).
However, the procest method seems to only work for a very limited class of models (max. 1 zero, max. 3 poles). Is there any way to achieve the same thing for more general models?
0 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur Linear Model Identification dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!