familiar with system identification toolbox?
Afficher commentaires plus anciens
I am using the system identification toolbox to find out the transfer function of a set of measured data. I use the simple example as below.but what I get as the transfer function in this toolbox is completely different from my TF. does anyone know what happens to the data and how exactly this toolbox works?
if true
T1=1;
Ks=1;
s=tf('s');
sys= Ks/(1+T1*s);
[y t]=step(sys);
plot(t,y)
end
after this code,import t and y as the input and output data in ident tool and see what happens in TF estimation!
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Linear Model Identification dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!