Question: How to obtain the coefficents of variable???(Basic Question)

>alias(phi=phi(x)): > U := u[0](x)*phi^(j-2): > cc := expand(6*U*(diff(U, x))): > select(has, cc, 1/phi^5); # can obtain > coeff(cc,phi^(2*j-5)); # obtain 0 0 > select(has, cc, phi^(2*j-5)); # obtian 0 0 I want to obtain the coefficents of variable,phi^(2*j-5), but both "coeff" and "selcet" are invaild. How to obtain the coefficents?? Many thanks in advance!
Please Wait...