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
+
functionschur_form(sys)
315
+
SF =schur(sys.A)
316
+
A = SF.T
317
+
B = SF.Z'*sys.B
318
+
C = sys.C*SF.Z
319
+
ss(A,B,C,sys.D, sys.timeevol), SF.Z, SF
320
+
end
321
+
303
322
"""
304
323
Ninf, ω_peak = hinfnorm(sys; tol=1e-6)
305
324
@@ -324,8 +343,8 @@ state space systems in continuous and discrete time', American Control Conferenc
0 commit comments