<< Chapter < Page | Chapter >> Page > |
Using the routine
writetext.m
(this file, which can
be found on the website, uses the M
atlab command
fwrite
), write the
Wizard of Oz text to a file
OZ.doc
. Use a compression routine (
uuencode
on a Unix or Linux machine,
zip
on a Windows machine,
or
stuffit on a Mac) to compress
OZ.doc
.
Note the file size when the file is in its compressed form,and the file size after decompressing.
How does this compare with the compression ratio achieved in
[link] ?
some redundancy to a signal before it is transmitted so that it becomes possible to detect when errors have occurredand to correct them, when possible.
Perhaps the simplest technique is to send each bit three times. Thus, in order to transmit a 0, the sequence 000is sent. In order to transmit 1, 111 is sent.This is the encoder . At the receiver, there must be a decoder . There are eight possible sequences that can be received,and a “majority rules” decoder assigns
This encoder/decoder can identify and correct any isolated single error and so the transmissionhas smaller probability of error. For instance, assuming no more than one error per block, if101 was received, then the error must have occurred in the middle bit, while if 110 was received,then the error must have been in the third bit. But the majority rules coding scheme is costly:three times the number of symbols must be transmitted, which reduces the bit rate by a factor of three.Over the years, many alternative schemes have been designed to reduce the probability of error in thetransmission, without incurring such a heavy penalty.
Linear block codes are popular because they are easy to design, easy to implement, and because they havea number of useful properties. With , an linear code operates on sets of symbols, and transmits a length code word for each set. Each code is defined by two matrices:the by generator matrix , and the by parity check matrix . In outline, the operation of the code is as follows:
The simplest way to understand this is to work through an example in detail.
To be explicit, consider the case of a binary code with generator matrix
and parity check matrix
This code bundles the bits into pairs, and the four corresponding code words are
There is one subtlety. The arithmetic used in the calculation of the code words (and indeed throughout the linear block codemethod) is not standard. Because the input source is binary, the arithmetic is also binary.Binary addition and multiplication are shown in [link] . The operations of binary arithmetic may be more familiar as exclusive OR (binary addition), and logical AND (binary multiplication).
Notification Switch
Would you like to follow the 'Software receiver design' conversation and receive update notifications?