Kalman Filter - computation of system parameters

조회 수: 1 (최근 30일)
Ilaria Strazzulla
Ilaria Strazzulla 2012년 3월 8일
답변: SAI SRUJAN 2024년 9월 26일
Hi, can you tell me what matlab function can compute the parameters A(k), B(k), C(k), D(k) of a system: x(k+1) = A(k)x(k) + B(k)u(k) y(k) = C(k)x(k) + D(k)u(k)

답변 (1개)

SAI SRUJAN
SAI SRUJAN 2024년 9월 26일
Hello Ilaria,
To compute the system parameters ( A(k) ), ( B(k) ), ( C(k) ), and ( D(k) ) for a state-space model in MATLAB, you can use the System Identification Toolbox.
Please go through the following code sample to proceed further,
data = iddata(y, u, Ts); % y: output data, u: input data, Ts: sample time
sys = ssest(data, n); % n: order of the system
[A, B, C, D] = ssdata(sys);
Please go through the following documentation to understand more about iddata and ssest MATLAB functions,
I hope this helps!

카테고리

Help CenterFile Exchange에서 Linear Model Identification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by