System Identification model validation failure!
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello, I am using the system identification tool in Matlab R2012a. I have a data set imported in the GUI, used the State space estimation method. I got a 95% best fit on the model output window. The estimated model is now imported to the workspace to get the state variables. The problem is when I use these stat variables in simulink to observe its response to a step input, i get constant 0. What could the problem be? If the estimation gives us 95% match, why would the model always give zero?
0 comentarios
Respuesta aceptada
Rajiv Singh
el 3 de Oct. de 2012
What initial conditions did you use in Simulink block? The GUI estimates the initial states to maximize the fit to data. If you want, you can use the same initial states in the Simulink block by using the FINDSTATES command to compute the fit-maximizing values.
2 comentarios
Rajiv Singh
el 4 de Oct. de 2012
If you estimated a state-space model in the GUI, the model should be an IDSS object which can be used directly:
x0 = findstates(sys,data)
where sys is the model exported from the GUI. If sys is some other type of model, such as a transfer function or process models, convert it into IDSS first:
sys = idss(sys);
x0 = findstates(sys,data);
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear Model Identification en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!