Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - In matlab, the pulse transfer function becomes a state space expression.
In matlab, the pulse transfer function becomes a state space expression.
Firstly, the discrete transfer function is expressed, and then it is transformed into the form of state space by ss:

& gt& gt? z = TF(' z ');

& gt& gt? g=(2*z^2+z+2)/(z^3+6*z^2+ 1 1*z+6)

Transfer? Function:

2? z^2? +? z? +? 2

-

z^3? +? 6? z^2? +? 1 1? z? +? six

Sampling? Time:? Unspecified

& gt& gt? ss(G)

Answer? =?

x 1? x2? x3

x 1? -6? -2.75? -0.75

x2? 4? 0? 0

x3? 0? 2? 0

b? =?

u 1

x 12

x20

x30

c? =?

x 1? x2? x3

y 1? 1? 0. 125? 0. 125

d? =?

u 1

y 10

Sampling? Time:? Unspecified

Discrete time? Model.