How to implement this c-code: if(Flag == 1) {Flag = 0;} ?
9 ビュー (過去 30 日間)
古いコメントを表示
I used a signal (this is what I needed) for Flag at an input port of stateflow, but Flag is not recognized inside the stateflow. If I add an input data in the stateflow, it will not be allowed to change the value (through a transit with a statement {Flag=0;} inside the stateflow).
Please help. Thanks!
0 件のコメント
回答 (1 件)
Fangjun Jiang
2011 年 10 月 14 日
This is one of the difference between C and Simulink. In C, you can re-use the variable name. In Simulink, the signal name represents the data flow. You can't re-use the signal name. You have to declare an output for the Stateflow and then assign value accordingly.
12 件のコメント
Fangjun Jiang
2011 年 11 月 1 日
You are right. Port name is used to identify the port block. The generated code will not necessarily use port name for variable name.
参考
カテゴリ
Help Center および File Exchange で Simulink Functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!