H infty optimization of transfer function matrix - which method?
Mostrar comentarios más antiguos
I have a two-dimensional (2 x 2) transfer function matrix like this:

The aim is to solve optimization problem:

I used the code below, but there is no convergence:
s = tf('s');
x = fmincon(@(x) norm([1/(x(1)*s+1), 1/(s+0.5); 3/(s+3), 1/(x(2)*s+2),inf),[1 1],[],[],[],[],[0 0],[2 2])
How can I treat this optimization problem? Which one of optimization methods is useful for this problem?
Any ideas would be appreciated.
Respuestas (2)
Dina Irofti
el 9 de Mzo. de 2014
0 votos
Try the hinfsyn function.
You might also be able to do it with FMINSEARCH
x = fminsearch(@(x) norm([1/(x(1)*s+1), 1/(s+0.5); 3/(s+3), 1/(x(2)*s+2),inf),[1 1])
Categorías
Más información sobre Surrogate Optimization en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!