From 71ffda22cb2a60c58a25bff18c158dc6491995ab Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Wed, 3 May 2023 15:43:58 +0200 Subject: FIX: indentation in LQR.m --- templates/LQR.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/LQR.m b/templates/LQR.m index 76d95c6..a213bd7 100644 --- a/templates/LQR.m +++ b/templates/LQR.m @@ -15,10 +15,10 @@ classdef LQR %constructor function obj = LQR(Q,R,params) % YOUR CODE HERE - E = np.zeros(params.model.nx); - S = np.zeros(params.model.nx); - Pinf = idare(params.model.A, params.model.B, Q, R, S, E, 'noscaling') - obj.K = -inv(R + B' * Pinf * B) * B' * Pinf * A; + E = np.zeros(params.model.nx); + S = np.zeros(params.model.nx); + Pinf = idare(params.model.A, params.model.B, Q, R, S, E, 'noscaling') + obj.K = -inv(R + B' * Pinf * B) * B' * Pinf * A; end function [u, ctrl_info] = eval(obj,x) -- cgit v1.2.1