Skip to content

Commit 6c957ef

Browse files
committed
update kwarg
1 parent cffa8f1 commit 6c957ef

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

src/canonical.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ If `C1`, then an additional convention for SISO systems is used, that the `C`-ma
7676
7777
`E` is an eigen factorization of `A`.
7878
79+
The modal form makes apparent which modes are controllable from which inputs, and which are observable from which outputs. Non-minimal realizations may trigger singularity exceptions.
80+
7981
See also [`hess_form`](@ref) and [`schur_form`](@ref)
8082
"""
8183
function modal_form(sys; C1 = false)

src/find_lft.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function find_lft(sys::StateSpace{<:Any, <:AbstractParticles{<:Any, N}}, delta,
9595
iterations = 40000,
9696
allow_f_increases = true,
9797
time_limit = 45,
98-
x_tol = 1e-8,
98+
x_abstol = 1e-8,
9999
f_reltol = 0,
100100
g_tol = 1e-16,
101101
),

src/mimo_diskmargin.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ function structured_singular_value(M::AbstractArray{T}; tol=1e-4, scalings=false
176176
iterations = 1000,
177177
allow_f_increases = false,
178178
time_limit = 100,
179-
x_tol = 0,
179+
x_abstol = 0,
180180
f_abstol = 0,
181181
g_tol = tol,
182182
f_calls_limit = 0,
@@ -400,7 +400,7 @@ function loop_scaling(M::Matrix, tol=1e-4)
400400
iterations = 1000,
401401
allow_f_increases = false,
402402
time_limit = 100,
403-
x_tol = 0,
403+
x_abstol = 0,
404404
f_abstol = 0,
405405
g_tol = tol,
406406
f_calls_limit = 0,
@@ -458,7 +458,7 @@ end
458458
# iterations = 1000,
459459
# allow_f_increases = false,
460460
# time_limit = 100,
461-
# x_tol = 0,
461+
# x_abstol = 0,
462462
# f_abstol = 0,
463463
# g_tol = tol,
464464
# f_calls_limit = 0,

test/test_hinfgrad.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ v = vec(C)
7878
# iterations = 1000,
7979
# allow_f_increases = false,
8080
# time_limit = 1,
81-
# x_tol = 0,
81+
# x_abstol = 0,
8282
# f_abstol = 0,
8383
# g_tol = 1e-8,
8484
# f_calls_limit = 0,

0 commit comments

Comments
 (0)