I'm not understanding how for loops are expanded in state flow. I the chart below I'm attempting to break a 32-bit value into 8, 4-bit chunks and store them into an array. I'm expecting bits 32-29 to go in buf(1), bits 28-25 in buf(2), bits 24-21 in buf(3) and so on. However, it seems that bits 1-4 get stuffed into each element of buf. Why is this not working properly and what is the correct way to implement something like this?

 採用された回答

Samar
Samar 約8時間 前

0 投票

Hi John,
In your chart, the shift distance is computed using unsigned fixed‑point (fi) arithmetic (because i is an unsigned fi). That can cause the negative shift count you intend (right shift) to be type-promoted/wrapped instead of staying a proper negative integer, so the bitshift effectively behaves like “no meaningful shift,” and then bitand(..., 0xF) keeps returning the lowest nibble for every element. This is consistent with Stateflow fixed‑point promotion behavior and fixed‑point operation rules stated in the MathWorks Documentation links given here: https://www.mathworks.com/help/stateflow/ug/how-fixed-point-data-works-in-stateflow-charts.html
The method explained below can help:
Make the shift amount a built‑in signed integer (e.g., int32), or use built‑in integer loop indices so the shift count is not a fi.
value = uint32(hex2dec('12345678'));
for i = 0:7
sh = int32(28 - 4*i);
buf(i+1) = bitand(bitshift(value, -sh), uint32(15));
end
Negative shifts mean right shift, and this works reliably when the shift count is a proper signed built‑in numeric type.
You can refer the following MathWorks Documentation/MATLAB Central links for more understanding:
Hope this helps!
Regards,
Samar

1 件のコメント

John
John 約3時間 前
Thanks, that cleared some things up for me. It seemed like my main problem was that the index variable, i, was unsigned.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDecision Logic についてさらに検索

製品

リリース

R2025b

タグ

質問済み:

2026 年 5 月 4 日 18:40

コメント済み:

2026 年 5 月 7 日 13:49

Community Treasure Hunt

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

Start Hunting!

Translated by