How can I add 1-bit delay to incoming serial bit pattern?
2 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Azzi Abdelmalek
on 11 Feb 2013
Edited: Azzi Abdelmalek
on 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 Comments
More Answers (0)
See Also
Categories
Find more on Simulink Functions in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!