I'm trying to design a suitable wireless link between two stations 10m apart ..And I'm currently facing some difficulties. Can anyone help with this matter

My progress till now has been 1. Acquire data 2. Segregate data based on some conditions and accordingly convert to digital stream 3. Use the digital data and digitally modulate the sequence using QPSK scheme
I'm not sure about how to proceed and what type of noisy channel must be taken. Also is source encoding like Huffman coding necessary between short distance transmissions( Considering ideal case where it is immune to other channel interferences)

 Accepted Answer

In the ideal case, you do not need to provide any error detection or error correction, and you do not need to compress the data: all you need to do is send information about how big the data is followed by the data itself.
But even if you have an ideal error free channel, doing some kind of lossless compression makes the transmission time shorter (well, depends on how compressible the data is), which is usually a useful property.
When you have a channel that has errors, you do not strictly need to compress the data. But (1) compressing the data will reduce the transmission time; and (2) the fewer bits you transmit, the fewer bits have a chance to be corrupted by the channel errors. Each detected but not corrected error requires retransmission which uses up channel capacity, so if you compress and so reduce total bits that can be affected by errors, you reduce the probability of needing retransmission, and so increase your average channel utilization.
There is no one answer to what kind of noisy channel needs to be used: it depends on the kind of environment you want to emulate. For example if you had random trucks driving inbetween sender and receiver, then the loss of bits is going to be more by blocks than independent such as would be the case for AWGN.

1 Comment

Thank you for your valuable input Mr. Robertson. I have a follow up question regarding the state of channel transmissions. 1. When considering the wireless link, random noise(Fading channel) would be more appropriate than AWGN which would be better modelled for wired channel? 2. How do I go about computing the SNR of the channel along with the BER for QPSK transmissions. Will the sole knowledge of channel capacity theorem suffice? Assuming am using some minimum no of bits for transmission. 3. Are there default commands in MATLAB for error checking or is design for a syndrome circuit necessary for some block code?

Sign in to comment.

More Answers (0)

Tags

Asked:

on 2 Feb 2014

Commented:

on 2 Feb 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!