Offset binary in Simulink HDL
1 回表示 (過去 30 日間)
古いコメントを表示
i want to convert a 2's complement number to binary offset in simulink, how do i do the design? can anyone help me? Theoretically, I just need to take the inverse of the MSB to get the binary offset. However I don't know how to do it in simulink
0 件のコメント
回答 (1 件)
Kiran Kintali
2023 年 8 月 7 日
a = fi(-pi, 1, 6, 0);
msb = getmsb(a);
c = bitcmp(msb);
You can write a MATLAB function block with getmsb and bitcmp functions.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で FPGA, ASIC, and SoC Development についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!