GFMult {HadamardR} | R Documentation |
GFMult GFMult Generate Multiplication table of GF(p^r), where p is a prime power.
GFMult(cardin)
cardin |
integer |
This function returns Multiplication table of Galois field of order p^r. To use this function, Minimum function, elements of GF are required. Minimum functions are available in internal dataset. Elements can be generated using GFELEM function.
Multiplication table of GF(p^r)
GFMult(9)
## [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9]
## [1,] 1 1 1 1 1 1 1 1 1
## [2,] 1 3 4 5 6 7 8 9 2
## [3,] 1 4 5 6 7 8 9 2 3
## [4,] 1 5 6 7 8 9 2 3 4
## [5,] 1 6 7 8 9 2 3 4 5
## [6,] 1 7 8 9 2 3 4 5 6
## [7,] 1 8 9 2 3 4 5 6 7
## [8,] 1 9 2 3 4 5 6 7 8
## [9,] 1 2 3 4 5 6 7 8 9