How can I add 1-bit delay to incoming serial bit pattern?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I am learning MATLAB and this is my first time encounter with this doing some kind of behavioral coding.
The serial bit pattern is an array of elements, with two fixed values 1 and -1. I think I need to implement some kind of shifting (may be I am wrong). After the serializer block I have a one-bit delay block, which would delay each bit outgoing through it with 1-bit delay. I need help in this.
The serial bit-pattern is set at particular frequency of PLL clock.
2 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 11 Feb. 2013
Bearbeitet: Azzi Abdelmalek
am 11 Feb. 2013
x=[1 -1 -1 1]
f=@(k) x(k-1)
If you are using simulink you can use unit delay block
4 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!