Borrar filtros
Borrar filtros

how does the command "nd2sys"work ?

10 visualizaciones (últimos 30 días)
dipan
dipan el 23 de Feb. de 2012
Editada: Ray Huang el 8 de Mayo de 2017
Hi, I am trying to make the generalized plant for a Hinfinity control problem. In one of the examples I see that "nd2sys" is used to convert a transfer function ([num],[den]) into a [A B; C D] like state space form called the System Matrix. Could anyone provide an explanation of how this function works because it also adds an extra row and column in the matrix which I cant figure out why ?
thanks, dipan

Respuestas (1)

Ray Huang
Ray Huang el 8 de Mayo de 2017
Editada: Ray Huang el 8 de Mayo de 2017
The extra row and column are added for the data structure information. The -inf in the bottom right means the matrix is a SYSTEM matrix. The number in the top right denotes the number of system state. That is, no matter which function you use, if the function output is SYSTEM matrix, there will always have extra row and column.
For example, if we have a system y=(1/s)*u, then we can get the state-space model x'=Ax+Bu y=Cx+Du where A=0,B=1,C=1,D=0. It is easy to see that the model only have one system state, and the result of "nd2sys" should be [A B 1;C D 0;0 0 -Inf]

Categorías

Más información sobre Data Types 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