polynom -> list



On Sam, 2004-12-18 at 22:11 +0100, Frank Thieme wrote:
> I need to make a list from a polynom
> 
> x^2+5*x should become [x^2, 5*x]
> 
> How can I do that in maxima? 

Ha, found something myself:

makelist(part(p,i),i,1,length(p));

with p as the polynom