system identification procedure

1 Ansicht (letzte 30 Tage)
Mr Smart
Mr Smart am 16 Okt. 2012
Hello, anyone knows? How to make implementation or realization system identification procedure in matlab .Using simulink model(electric device model such as transfer function and integrator).From this model I can get experimental data(input and output).
  1 Kommentar
K E
K E am 19 Okt. 2012
In case it is helpful, there is a System Identification Toolbox for Matlab/Simulink that can be purchased.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Rajiv Singh
Rajiv Singh am 18 Okt. 2012
Have Simulink data available in MATLAB workspace as double vectors. In the GUI (ident) import time signals to load the data. Then you work from there. If you are estimating models in the command line, package the data into an iddata object:
data = iddata(y,u,Ts); % y = output; u = input; Ts = sample time
Then try various estimation commands, e.g:
model = tfest(data, 2); % second order transfer function
The logged data (y,u) must be equi-sampled. If not, interpolate them to a uniform time grid.
  2 Kommentare
Amir Hejazi
Amir Hejazi am 27 Apr. 2013
what should we do if sample time was not constant?
Rajiv Singh
Rajiv Singh am 2 Mai 2013
interpolate or log data from the Simulink model at constant time intervals. Most identification routines do not handle irregularly sampled data.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Linear Model Identification finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by