Converts a sym-polynomial in a Scilab-polynomial
S=symb(P,x)
is a sym-polynomial
is a string representing the main variable of P
is the resulting Scilab polynomial
The polynomial must have real or complex coefficients.
Syms('x') P=x^4-2*x^3+3*x^2-x+1 sym2poly(P,'x')