Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
lft
linear fractional transformation
Syntax
S = lft(P, R) [S, s] = lft(P, p, R) [S, s] = lft(P, p, R, r)
Arguments
- P
- linear system (in state space or transfer function representation) or a simple gain, the ``augmented'' plant, implicitly partitioned into four blocks (two input ports and two output ports). 
- p
- 1x2 row vector, the dimensions of the - P_22block (see below).
- R
- llinear system (in state space or transfer function representation) or a simple gain, implicitly partitioned into four blocks (two input ports and two output ports). 
- r
- 1x2 row vector, dimension of the - R_22block . This argument should not be used. It is retained for compatibility with previous versions.
- S
- linear system, the linear fractional transform. 
- s
- 1x2 row vector, dimension of the - S_22block (see below).
Description
Linear fractional transform between two standard plants in state space form or in transfer form:

- Syntax  S=lft(P,R)
- Computes the linear fractional transform between the systems - Pand a controller- R. The system- Scorresponds to the transfer - if - nyand- nuare respectively the number of inputs and outputs of- R, one must have- size(P)>=[ny nu]. The system returned is formally equivalent toUsing- i1 = 1:($-ny);j1=1:($-nu); i2 = ($-ny+1):$;j1=($-nu+1):$; S = P(i1,j1) + P(i1,j2) * R * (eye() - P(i2,j2) * R) \P(i2,j1) - lftinstead of the code above avoids numerical problems and non minimal realization.
- Syntax  [S,s]=lft(P,p,R)
- with - p= [ny,nu]Forms the generalized (2 ports) lft of- Pand- R.- Sis the two-port interconnected plant, which correspond to the transfer:![\left[
                            \begin{array}{l}z_1\\z_2\end{array}\right]=\text{ S } \left[
                            \begin{array}{l}w_1\\w_2\end{array}\right]](/docs/6.1.1/en_US/_LaTeX_lft.xml_2.png) - sis the dimension of the- 22block of- S.
P and R can be PSSDs i.e. may admit a
            polynomial D matrix.
Examples
See also
| Report an issue | ||
| << feedback | Control Loop | H-infinity >> |