symbolic variable of a polynomial or a rational
[symb]=varn(p) [pm]=varn(p,varname)
matrix of polynomials or of rationals
character string: name of the variable
character string: the new name of the variable of p, set for pm
matrix of polynomials or of rationals
symb=varn(p) returns in symb the symbolic variable of the polynomial p
(i.e. varn(poly(0,'x')) is 'x').
varn(p,'s') returns a polynomial matrix with same coefficients
as p but with 's' as symbolic variable (change of variable name).
s = poly(0,'s'); p = [s^2+1,s]; varn(p) varn(p,'x') f = %z / (%z-1); f = [f f^2] varn(f) varn(f,"x") | ![]() | ![]() |
| Version | Description |
| 5.5.1 | Extension to rationals |