H infinity norm command
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello, Please can somebody write a command in matlab for calculating H infinity norm for the following system: dz/dt=Az(t)+Bu(t)+Fw(t) y(t)=Cz(t)+Du(t) where A,B,C,F,D real value 2x2 matrices I have the following command but it is not working
A = [0 2; 8 1] B = [1 0; 2 1] F = [-1 2; -4 3] C = [2 0; 0 1] D = [1 0; 0 0] sys = ss(A,B,F,C,D);
norm(sys,inf)
Thanks for advance everybody
2 Kommentare
Abhisek Roy
am 3 Jun. 2016
Hello Oleg,
Have you tried the 'hinfnorm' command? Have a look at this command, it might be helpful.
Regards, Abhisek
Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!