Scilab 5.5.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
rlist
Scilab rational fraction function definition
Calling Sequence
rlist() rlist(a1 ,..., an)
Description
rlist(a1, ..., an)
is a shortcut to
tlist(['r','num';'den','dt'], a1, ..., an)
.
rlist(a1, ..., an)
creates a tlist
with ['r','num';'den','dt']
as
first entry and ai
's as next entries if any. No type nor size
checking is done on ai
's.
Examples
s=poly(0,'s'); W=[1/s,1/(s+1)] W'*W Num=[s,s+2;1,s]; Den=[s*s,s;s,s*s]; rlist(Num,Den,[])
See Also
Report an issue | ||
<< null | Data Structures | setfield >> |