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
The Schur form is characterized by `A` being Schur with the real values of eigenvalues of `A` on the main diagonal. `T` is the similarity transform applied to the system such that
309
+
```julia
310
+
sysm ≈ similarity_transform(sys, T)
311
+
```
312
+
`SF` is the Schur-factorization of `A`.
313
+
314
+
See also [`modal_form`](@ref) and [`hess_form`](@ref)
315
+
"""
316
+
functionschur_form(sys)
317
+
SF =schur(sys.A)
318
+
A = SF.T
319
+
B = SF.Z'*sys.B
320
+
C = sys.C*SF.Z
321
+
ss(A,B,C,sys.D, sys.timeevol), SF.Z, SF
322
+
end
323
+
303
324
"""
304
325
Ninf, ω_peak = hinfnorm(sys; tol=1e-6)
305
326
@@ -324,8 +345,8 @@ state space systems in continuous and discrete time', American Control Conferenc
0 commit comments