|
Go to the first, previous, next, last section, table of contents.
- dp_vtoe(vect)
-
:: 指数ベクトルを項に変換
- dp_etov(dpoly)
-
:: 頭項を指数ベクトルに変換
- return
-
dp_vtoe : 分散表現多項式, dp_etov : ベクトル
- vect
-
ベクトル
- dpoly
-
分散表現多項式
-
dp_vtoe() は, ベクトル vect を指数ベクトルとする項を生成する.
-
dp_etov() は, 分散表現多項式 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.
|