- Value Params
- pol
internal representation of polynomial.
- Companion
- object
Value members
Constructors
constructor from string with radix.
constructor from string with radix.
- Value Params
- radix
radix of the number of val
- value
a string consists of numbers of radix
Concrete methods
If zero, this method returns -1, otherwise, returns the degree of polynomial.
If zero, this method returns -1, otherwise, returns the degree of polynomial.
- Returns
degree of this polynomial
return coefficient of specified term, returned value is zero or one.
return coefficient of specified term, returned value is zero or one.
- Value Params
- index
degree of term
- Returns
coefficient of specified term
Calculate residue of this polynomial divided by that polynomial. Using means return this % that if this and that were int.
Calculate residue of this polynomial divided by that polynomial. Using means return this % that if this and that were int.
- Value Params
- that
divider
- Returns
residue
Multiplication over F2[t].
Multiplication over F2[t].
- Value Params
- that
Polynomial
- Returns
result of multiplication
power of this polynomial, thispow.
power of this polynomial, thispow.
- Value Params
- pow
exponent
- Returns
thispow
returns thispow % mod.
returns thispow % mod.
- Value Params
- mod
polynomial
- pow
exponent
- Returns
polynomial whose degree is less than mod polynomial
return binary format representation of polynomial.
return binary format representation of polynomial.
- Returns
binary format string
- Definition Classes
- Any