From d2d174694099a2e9e88124287e2fd32c3cc4e808 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Fri, 31 May 2024 15:31:02 +0200 Subject: Update model and weights --- uav_model.m | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'uav_model.m') diff --git a/uav_model.m b/uav_model.m index af0be20..c2d588d 100644 --- a/uav_model.m +++ b/uav_model.m @@ -9,8 +9,7 @@ % principles (equations of motion). % % * A linear model obtained by linearizing the the non linear plant model at -% an operating point specified in the params struct argument. And adding -% models for the actuators. +% an operating point specified in the params struct argument. % % * A uncertain linear model with reference trcking built atop of the linear % model using SIMULINK. The uncertain model contains the performance and @@ -276,7 +275,7 @@ sys = pade(ss(A, B, C, D, 'OutputDelay', T), n); % sys = ss(A, B, C, D); % Add actuators -sys = sys * model.actuators.StateSpace; +% sys = sys * model.actuators.StateSpace; % Remove unnecessary states sys = minreal(sys, [], false); % slient -- cgit v1.2.1