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.
2 件のコメント
採用された回答
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!