stateflow 내에 생성한 simulink function의 경우 코드 생성
8 次查看(过去 30 天)
显示 更早的评论
stateflow 내에 생성한 simulink function의 경우 코드 생성할때
automic으로 모델 생성하고 함수를 따로 빼서 코드 생성할수는 없을까요?
void untitled_step(void)
{
/* Chart: '<Root>/Chart' incorporates:
* SubSystem: '<S1>/add'
*/
/* Sum: '<S2>/Add' incorporates:
* Inport: '<Root>/Input'
* Inport: '<Root>/Input1'
*/
if (untitled_U.Input + untitled_U.Input1 > 10.0) {
/* Outport: '<Root>/Out1' */
untitled_Y.Out1 = 10.0;
} else {
/* Outport: '<Root>/Out1' */
untitled_Y.Out1 = 0.0;
}
/* End of Sum: '<S2>/Add' */
}
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deployment, Integration, and Supported Hardware 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!