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?

 Akzeptierte Antwort

Samar
Samar am 7 Mai 2026 um 9:24

0 Stimmen

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 Kommentar

John
John am 7 Mai 2026 um 13:49
Thanks, that cleared some things up for me. It seemed like my main problem was that the index variable, i, was unsigned.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Decision Logic finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2025b

Tags

Gefragt:

am 4 Mai 2026 um 18:40

Kommentiert:

am 7 Mai 2026 um 13:49

Community Treasure Hunt

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

Start Hunting!

Translated by