For loops in stateflow

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 2026-5-7,9:24
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 2026-5-7,13:49
Thanks, that cleared some things up for me. It seemed like my main problem was that the index variable, i, was unsigned.

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Decision Logic 的更多信息

产品

版本

R2025b

标签

提问:

2026-5-4

评论:

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