필터 지우기
필터 지우기

Modelling in simulink to obtain a function taking one parameter after code generation

조회 수: 1 (최근 30일)
void DoProcessing(ReceiveEvent enEvent)
{
switch(enEvent)
{
case a:
abcd();
break;
case b:
efgh();
break;
}
}
How can a model be developed in simulink (without using thhe Matlab function block)which on code generation generates a function of the above nature?
Thanks!

답변 (2개)

TAB
TAB 2013년 2월 26일
Use Switch case block.

Joseph Stalin
Joseph Stalin 2013년 2월 26일
To pass an argument of a function please configure the sybsystem block to reusable function having the argument passed via Input port.
Code generation is more flexible that you can create this function in a user specified function name and file name as well.

카테고리

Help CenterFile Exchange에서 Simulink Functions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by