I am sorry, I come from a software background only. I am using Python to develop a free open source code communication software. I do not have a strong background in signal processing but my aim is to develop a software in same domain.
Hence my approach is more logical than theoretical. Logical understanding is a process where complicated or unknown things are explained to a layman in a simple manner. Its like making a baby make to learn walking from crawling. Later baby can run all by himself gradually.
sophiecentaur said:
Put the boxcar digital bit stream through a low pass filter
My input data stream is of 0's and 1's bit stream (0 - 0 volts and 1 - 5 volts). Since all is generated with same frequency (Hz) value as imputed by user the frequency would remain same -
sophiecentaur said:
superimpose many short data streams on top of each other
I understand that my input stream bit needs to an big array of 0's and 1's - say an array with 1024 index values like -
100110010101011101010110 ... until 1024 index
Now how short bit stream should I take - as per
http://www.edn.com/design/test-and-...gram-Basics-Reading-and-applying-eye-diagrams portal bit sequences 010, 101,011, 001, 100, and 110 needs to be superimposed as a properly constructed eye should contain every possible bit sequence from simple alternate 1’s and 0’s to isolated 1’s after long runs of 0’s, and all other patterns that may show up weaknesses in the design.
Hence as per my understanding is that I break my 1024 bit stream to a group of 3 bits - each capturing at least a change from 0 to 1 or 1 to 0. So should I take group where there are alternates 0's and 1's at least:
1 2 3 4 5 6 7 8 9 10 11 12 ...
0 0 0 0 1 0 1 1 1 0 1 0 ...
Is it that irrespective of what the patter is I just create the digital signal graph of these bit patterns:
Digital Signal group 1 and 3 need not be plotted in chart as there is no change in signal values.
Digital Signal chart for group 2 needs to plotted as there is change in bit pattern: 010
Digital Signal chart for group 4 needs to plotted as there is change in bit pattern: 010
Please confirm my understanding.