How can I add 1-bit delay to incoming serial bit pattern?
1 次查看(过去 30 天)
显示 更早的评论
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.
采纳的回答
Azzi Abdelmalek
2013-2-11
编辑:Azzi Abdelmalek
2013-2-11
x=[1 -1 -1 1]
f=@(k) x(k-1)
If you are using simulink you can use unit delay block
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!