familiar with system identification toolbox?
Show older comments
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!
Accepted Answer
More Answers (0)
Categories
Find more on Linear Model Identification in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!