出力の初期値をfalseに設定しておき、ある条件が成立した場合に出力を更新する方法
Afficher commentaires plus anciens
出力の初期値がfalseで、いくつかの条件文があり、条件を満たすとtrueを出力する関数をモデルで表現するにはどのようにすべきでしょうか。(2015a)
例えば以下のような関数です。
boolean func(void)
{
boolean rtn ;
rtn = false ; //出力を初期化しておく
if ( flgA == true )
{
rtn = true ;
}
if ( flgB == true )
{
rtn = true ;
}
return ( rtn ) ;
}
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Biomedical Imaging dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!