Info

This question is closed. Reopen it to edit or answer.

Statespaceidentification with PID toolbox

1 view (last 30 days)
Fabian
Fabian on 19 Dec 2013
Closed: MATLAB Answer Bot on 20 Aug 2021
Hi,
im trying to identify a complicated statespacemodel with system identification toolbox. I have a lot of physical insight, so im using structured parameterization to fix some values of statespacematrices.
For example for fixing C matrix to identity Im using
A = eye(5); B = eye(5); C = eye(5); D = zeros(5,5);
m = idss(A,B,C,D,'Ts',60); m.Structure.c.Free = false;
Similarly Im doing this for the other matrices. All this works nice so far.
Another fact im trying to incorporate is that my A matrix is symetric, but i dont know how i can accomplish that? Is there any method to do so?
Thanks for help!
Kind rgds Fabian!

Answers (0)

Community Treasure Hunt

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

Start Hunting!