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


dp_vtoe, dp_etov

dp_vtoe(vect)
:: 指数ベクトルを項に変換
dp_etov(dpoly)
:: 頭項を指数ベクトルに変換
return
dp_vtoe : 分散表現多項式, dp_etov : ベクトル
vect
ベクトル
dpoly
分散表現多項式
[211] X=<<1,2,3>>;
(1)*<<1,2,3>>
[212] V=dp_etov(X);
[ 1 2 3 ]
[213] V[2]++$
[214] Y=dp_vtoe(V);
(1)*<<1,2,4>>


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