Above is the graph showing the BER (bit error rate) at different Eb/No values using BPSK over AWGN channel. The pink curve shows the BER of the uncoded system (without channel encoder and decoder) while the black curve represent the BER of the digital communication with the used of hamming (7,4) code for channel encoding. However, I can't explain why both curves started to intersect and cross over at 6dB.
Bit error rate uncoded vs Bit error rate digital communication
1k Views Asked by wolong91 At
1
There are 1 best solutions below
Related Questions in ENCODER
- ZXingObjC encoding issues
- how to write our own program in JM reference software
- Will all phones support YUV 420 (Semi) Planar color format in h.264 encoder?
- ASN1 Structure Encoding
- rotary encoder glitch in arduino
- is the audio source for .yuv test video sequences available?
- JPEG image file creation to be recognized by OS
- Record and playback with Opus Codec in Android
- Unable to decode utf-8 using thai language?
- Live streaming from remote machine webcam to wowza media server using encoder
- Encoding passwords using sha512 doesn't work correctly in Symfony2
- MediaCodec H264 Encoder not working on Snapdragon 800 devices
- Writing .mp3 file directly from stream
- Using jcodec SequenceEncoder
- How do I implement the android gif encoder in my app?
Related Questions in DECODER
- ASN1 Structure Encoding
- Android decoder dequeueOutputBuffer returns -1
- How to convert cable TV channel into Ip based stream
- Decoding a url-encoded windows-1251 (cp1251) string with JavaScript
- ZXing Decoder Online - Submit Error
- decoder JPEG not available (using virtualenv)
- Record and playback with Opus Codec in Android
- Unable to decode utf-8 using thai language?
- Tuning language weight (LW) and word insertion penalties (WIP) in CMU SPHINX
- FFMPEG: Explain parameters of any codecs function pointers
- Marc21 Binary Decoder with Akka-Stream
- Decoding H.264 NALU Stream C#
- Caesar Cipher decoded wrongly in Java
- image decoding in asp
- base64 image decoder for ASP classic
Related Questions in HAMMING-CODE
- How to break loop when values in array dont fill it whole?
- Loop cuts last two groups of my array, when it outputs values
- How to repetitively output and skip certain values from array by loop?
- TypeError: not all arguments converted during string formatting
- How to compute hamming code for 10 bits?
- Algorithm for hamming or parity bit calculation?
- How to: Hamming (248,240) decoder in Python
- Coder for a Hamming code of arbitrary length (binary matrix-vector multiplication, on a CPU, platform independent)
- How can I convert hamming number code in a while or for loop python
- WHY the result I calculated is different from what matlab calculated?
- Error correcting codes for short (7-10 bits) windowed reads from cyclic tapes
- Error detection and correction
- Why is my C++ Hamming code crashing after the first output?
- How to stop program in testbench?
- Hamming Window, python 2.7
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I started writing this in a comment and it started getting long. I figure this is either correct or not. It makes sense to me though so maybe you will have to do more research beyond this.
Note: I am aware BER is normally over seconds but for our purpose we will look at something smaller.
My first assumption though (based on your graph) is that the BER is on the actual data and not the signal. If we have a BER on these 2 different encoding schemes of 1 error every 7 bits we have a BER on the hamming encoded signal of 0 errors every 7 bits compared to 1 in 7.
Initial:
Now lets increase the noise thereby increasing the error rate of the entire signal.
Highly increased BER:
Somewhere during the increase in BER these must crossover as you are seeing on your graph. Beyond the crossover I would expect to see it worse on the Hamming side because of less data per error (lower actual data density). I am sure you could calculate this mathematically... unfortunately, it would take me more time to look into that than I care to though as it just intuitively makes sense to me.