Google

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


ptogf2n

ptogf2n(poly)
:: 一変数多項式を GF(2^n) の元に変換
return
GF(2^n) の元
poly
一変数多項式
  • poly の表す GF(2^n) の元を生成する. 係数は, 2 で割った余りに 変換される. poly の変数に @ を代入した結果と等しい.
[1] setmod_ff(x^30+x+1);
x^30+x+1
[2] ptogf2n(x^100);
(@^100)
参照
section gf2ntop


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