Go to the first, previous, next, last section, table of contents.


dp_ptod

dp_ptod(poly,vlist)
:: 多項式を分散表現多項式に変換する.
return
分散表現多項式
poly
多項式
vlist
リスト
[50] dp_ord(0);
1
[51] dp_ptod((x+y+z)^2,[x,y,z]);
(1)*<<2,0,0>>+(2)*<<1,1,0>>+(1)*<<0,2,0>>+(2)*<<1,0,1>>+(2)*<<0,1,1>>
+(1)*<<0,0,2>>
[52] dp_ptod((x+y+z)^2,[x,y]);  
(1)*<<2,0>>+(2)*<<1,1>>+(1)*<<0,2>>+(2*z)*<<1,0>>+(2*z)*<<0,1>>
+(z^2)*<<0,0>>
参照
section dp_dtop, section dp_ord.


Go to the first, previous, next, last section, table of contents.