出力の初期値をfal​seに設定しておき、​ある条件が成立した場​合に出力を更新する方​法

7 Ansichten (letzte 30 Tage)
徹 矢吹
徹 矢吹 am 26 Jun. 2020
出力の初期値がfalseで、いくつかの条件文があり、条件を満たすとtrueを出力する関数をモデルで表現するにはどのようにすべきでしょうか。(2015a)
例えば以下のような関数です。
boolean func(void)
{
boolean rtn ;
rtn = false ; //出力を初期化しておく
if ( flgA == true )
{
rtn = true ;
}
if ( flgB == true )
{
rtn = true ;
}
return ( rtn ) ;
}

Akzeptierte Antwort

Toshinobu Shintai
Toshinobu Shintai am 26 Jun. 2020
この構造であれば、Logical Operatorを使ってorをとれば作れます。添付ファイルを参照してください。

Weitere Antworten (0)

Kategorien

Mehr zu モデル化 finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!