Suppose I have an unspecified list of degree 1 polynomials in several variables, say [X1,X2,X3+3*X4,X0]
A priori I don't know how many variables or polynomials I will have, since they are found depending on some previous parameters.
My question is: How can I transform this list of polynomials into a matrix/linear transformation?
I've tried collecting the coefficients, but the .coefficients() does not work really well for multivariable polynomials since it does not "see the zero terms" (at least I don't know how to do that).