How can I implement conditional compilation logic in simulink and stateflow?
이전 댓글 표시
Is there any way to implement conditional compilation in simulink and stateflow. Example: #if (condition) {do something} #else {do something else} #end Iam From Automotive embedded systems background. Conditional compilation is very much required for Embedded systems software developement. I cannot find any block that support use of compiler directives in simulink. Can anyone help?
댓글 수: 1
Yashapal Chaudhary
2018년 2월 2일
you can use variant subsystem for creating pre processor directive
답변 (4개)
Siddharth
2012년 10월 17일
1 개 추천
In Stateflow, you build state machines using a graphical or (new) state transition table interface and conditional logic using flow charts. Find more information about flow charts here: www.mathworks.com/help/stateflow/decision-logic.html
The pattern wizard (user interface window) can be used to quickly build commonly used patterns like the ones you are asking about: http://www.mathworks.com/help/stateflow/ug/creating-flow-graphs-with-the-pattern-wizard.html
hope that helps, Siddharth
Guy Rouleau
2012년 10월 18일
1 개 추천
Subsystem and Model Variants allow conditional compilation:
K E
2012년 10월 18일
0 개 추천
Simulink allows Conditional Subsystems which are block groups that are executed if chosen conditions are met. More info in this blog post. I am not sure how to incorporate compiler directives as your question states, but maybe all you want to do is to execute some parts of the model conditionally, which can be done with Conditional Subsystems.
Yashapal Chaudhary
2018년 2월 2일
0 개 추천
you can use variant subsystem for creating pre processor directive
카테고리
도움말 센터 및 File Exchange에서 Decision Logic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!