|
D.9.2.18 decodeRandomFL
Procedure from library decodegb.lib (see decodegb_lib).
- Usage:
- decodeRandomFL(redun,p,e,n,t,ncodes,ntrials,minpol);
| - n is length of codes generated,
- redun = redundancy of codes generated,
- p is the characteristic,
- e is the extension degree,
- t is the number of errors to correct,
- ncodes is the number of random codes to be processed,
- ntrials is the number of received vectors per code to be corrected,
- minpol: due to some pecularities of SINGULAR one needs to provide
minimal polynomial for the extension explicitly
|
- Return:
- nothing
Example:
| LIB "decodegb.lib";
// correcting one error for one random binary code of length 25,
//redundancy 14; 300 words are processed
decodeRandomFL(25,14,2,1,1,1,300,"");
==> Time for decoding: 5
==>
==> Time for GB in decoding: 1
==>
==> Time for generating Fitzgerald-Lax system during decoding: 1
==>
|
|