How can I add 1-bit delay to incoming serial bit pattern?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Azzi Abdelmalek
le 11 Fév 2013
Modifié(e) : Azzi Abdelmalek
le 11 Fév 2013
x=[1 -1 -1 1]
f=@(k) x(k-1)
If you are using simulink you can use unit delay block
4 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!