Borrar filtros
Borrar filtros

How can I define the Generalized plant on matlab

7 visualizaciones (últimos 30 días)
Moath Saleh
Moath Saleh el 3 de Feb. de 2022
Editada: Jeremy Berke el 18 de Jul. de 2022
i have this generalized plant matrix, how can i define it in a matlab code to use it in Hinfinty synth. command.
[K,CL,GAM]=hinfsyn(P,nmeas,ncont), Hinfinity Synth.

Respuestas (1)

Jeremy Berke
Jeremy Berke el 18 de Jul. de 2022
Editada: Jeremy Berke el 18 de Jul. de 2022
You can use the ss command
P = ss(A, [B1 B2], [C1; C2], [D11 D12; D21 D22])
Where:
dx = A*x + B1*w +B2*u
z = C1*x + D11*w + D12*u
y = C2*x + D21*w + D22*u

Categorías

Más información sobre Robust Control Toolbox en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by