how to convert binary data from serial to parallel??

11 vues (au cours des 30 derniers jours)
Simran
Simran le 25 Fév 2013
Commenté : Walter Roberson le 21 Oct 2022
i am doing coding of OFDM. i need to convert the serial binary data to parallel form.
  2 commentaires
Walter Roberson
Walter Roberson le 25 Fév 2013
Is this question about Simulink, or is it a question abou using a serial to parallel hardware interface?
Simran
Simran le 25 Fév 2013
neithr for simulink nor for hardwre interface.. i need simple for loop coding or by using reshape command.. thnx

Connectez-vous pour commenter.

Réponses (2)

per isakson
per isakson le 25 Fév 2013
OFDM returns 95 hits in the File Exchange

Walter Roberson
Walter Roberson le 25 Fév 2013
parallel_form = reshape( serial_form, number_parallel_bits, []) .' ;
For example,
parallel_form = reshape( YourData, 8, []) .' ;
This assumes you want the parallel data per-row. It also assumes that the serial data is exactly divisible into parallel frames.
  5 commentaires
Amilton Pensamento
Amilton Pensamento le 21 Oct 2022
@Walter Roberson, thank you!
What about the other way around? How will the general expression look like to convert from parallel to serial?
Walter Roberson
Walter Roberson le 21 Oct 2022
reshape(parallel_form.',1,[])

Connectez-vous pour commenter.

Catégories

En savoir plus sur Simulation dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by