From 158803d61c9954550171d440ee44232697380093 Mon Sep 17 00:00:00 2001 From: baggepinnen <cont-frb@ulund.org> Date: Fri, 1 Sep 2017 14:32:53 +0200 Subject: [PATCH] Update instructions in lab script --- src/FRTN35_lab1.jl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/FRTN35_lab1.jl b/src/FRTN35_lab1.jl index a49264f..7d0d793 100644 --- a/src/FRTN35_lab1.jl +++ b/src/FRTN35_lab1.jl @@ -75,7 +75,8 @@ plot([y u], lab=["y" "u"]) na = 4 # Order of A polynomial nb = 2 # Order of B polynomial -arxtf, Σ = arx(h, y, u, na, nb) # Estimate trasfer function with ARX method +arxtf, Σ = arx(h, y, u, na, nb) # Estimate transfer function with ARX method bopl(G123, lab="Measured transfer function") -bodeconfidence!(arxtf, Σ, ω = logspace(0,3,200)) +bodeconfidence!(arxtf, Σ, ω = logspace(0,3,200), linecolor=:red) # The exclamation mark (!) +# adds to the previous plot. If there is no plot open, remove the ! -- GitLab