For the following operators, C and D are codes defined as a subset
(or subspace) of the R-space V.
We consider an [8, 7] linear code K
8 over Z
4 and examine some of its
properties.
> Z4 := IntegerRing(4);
> K8 := LinearCode< Z4, 8 |
> [1,1,1,1,1,1,1,1],
> [0,2,0,0,0,0,0,2],
> [0,0,2,0,0,0,0,2],
> [0,0,0,2,0,0,0,2],
> [0,0,0,0,2,0,0,2],
> [0,0,0,0,0,2,0,2],
> [0,0,0,0,0,0,2,2]>;
> K8;
[8, 7, 2] Linear Code over IntegerRing(4)
Generator matrix:
[1 1 1 1 1 1 1 1]
[0 2 0 0 0 0 0 2]
[0 0 2 0 0 0 0 2]
[0 0 0 2 0 0 0 2]
[0 0 0 0 2 0 0 2]
[0 0 0 0 0 2 0 2]
[0 0 0 0 0 0 2 2]
> IsCyclic(K8);
true
> IsSelfDual(K8);
true
> K8 eq Dual(K8);
true
[Next][Prev] [Right] [Left] [Up] [Index] [Root]