how to convert binary data from serial to parallel??
13 ビュー (過去 30 日間)
古いコメントを表示
i am doing coding of OFDM. i need to convert the serial binary data to parallel form.
2 件のコメント
Walter Roberson
2013 年 2 月 25 日
Is this question about Simulink, or is it a question abou using a serial to parallel hardware interface?
回答 (2 件)
Walter Roberson
2013 年 2 月 25 日
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 件のコメント
Amilton Pensamento
2022 年 10 月 21 日
@Walter Roberson, thank you!
What about the other way around? How will the general expression look like to convert from parallel to serial?
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!