You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MATLAB scripts to estimate sideslip angle (β) in a slalom maneuver using a Kalman Filter.
How to run
In MATLAB:
matlab
addpath(genpath(pwd)); % add current folder
KF % run the script
What this code does
Estimate sideslip angle β during a slalom maneuver using a linear bicycle model and a Kalman Filter (KF).
Input to the system: steering angle δ,
measurements of Kalman Filter: yaw rate r, lateral acceleration a_y
Signals and parameters
States:$x = [\beta,\ r]^\top$
Input:$u = \delta$
Measurements:$y = [r,\ a_y]^\top$
Params:$m, I_z, a, b, C_f, C_r, V_x$
Units: radians, m/s, N, kg, m, kg·m².