Scilab 6.0.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
denom
denominator (obsolete)
Syntax
den=denom(r)
Arguments
- r
rational or polynomial or constant matrix.
- den
polynomial matrix
Description
This function is obsolete and will be removed from Scilab 6.1.0. Please use the
.den rational attribute instead. |
den=denom(r)
returns the denominator of a rational matrix.
Since rationals are internally represented as
r=list(['r','num','den','dt'],num,den,[])
,
denom(r
) is the same as r(3)
,
r('den')
or r.den
Examples
See also
- numer — numerator (obsolete)
History
Version | Description |
6.0.2 | denom() is declared obsolete. The rational attribute
.den must be used instead. |
Report an issue | ||
<< degree | Polynomials | derivat >> |