// MECF digital net of base q, with q^T points. If q=p^e the net is represented as net of base p with e-times more columns and rows Reference: Y. Edel, RS-Nets in prepertation // base q nets transformed so that they can be used as if they were DigitalNetBase2 // details: an Element "a_i X^i" is represented as binary eq-tuple "a_i" // each "column" c of the GF(q) generator is replaced by the eq columns X^i c // so we have the eq-times numbers of columns and rows as in the GF(q) matrix // Note, the strength remains the GF(q) strength k, but there are many projections have strength in the range k to eq*k // check if everything that involves GF(q) multiplication (e.g. scrambling) gives the desired result 2 // b (base) 9 // numCols 9 // numRows // outDigits= numRows 512 // numPoints (=b^{numCols}) 8 // dim // 3 // Stregth, see comment above // in class DigitalNetBase2 // genMat[i] should be the i-th number below // 1 268435456 536870912 1073741824 272629760 545259520 1090519040 301989888 603979776 1207959552 // 2 268435456 536870912 1073741824 553648128 1086324736 830472192 1140850688 939524096 1711276032 // 3 268435456 536870912 1073741824 1098907648 834666496 1631584256 1744830464 1979711488 1543503872 // 4 268435456 536870912 1073741824 826277888 1614807040 1887436800 1442840576 469762048 771751936 // 5 268435456 536870912 1073741824 1619001344 1895825408 1354760192 738197504 1308622848 973078528 // 6 268435456 536870912 1073741824 1891631104 1367343104 297795584 1040187392 1778384896 1912602624 // 7 268435456 536870912 1073741824 1371537408 289406976 541065216 2046820352 1375731712 335544320 // 8 268435456 536870912 1073741824 4194304 8388608 16777216 33554432 67108864 134217728 // end of file