106 CHAPTER 3. FUNCTIONAL DESCRIPTION OF Xยต
Bounds on the Hโˆžnorm are returned as out. An estimate of the frequency where the
norm is achieved is returned as omega. Further control of the iteration is available via
keywords.
The following example calculates the H2and Hโˆžnorms of each of the closed loop
systems arising from the previousexample. Noticethat G2 has the minimum
H2norm and Ginf has the minimum Hโˆžnorm. We can also see that the Ginf has a
slightly lowernorm than the bound guaranteed from the hinfsyn function call.
# Calculate the norms of each closed loop system.
Ginf = starp(p,Kinf)
G2 = starp(p,K2)
hinfnorm(Ginf)?
ans (a column vector) =
1.17032
1.16915
hinfnorm(G2)?
ans (a column vector) =
36.2138
36.1776
h2norm(Ginf)?
ans (a scalar) = 2.86197
h2norm(G2)?
ans (a scalar) = 2.78655