how to switch on a function for a specific condition is met
1 回表示 (過去 30 日間)
古いコメントを表示
how to switch on a function for a specific condition is met
0 件のコメント
採用された回答
Walter Roberson
2017 年 3 月 20 日
function_is_on = false;
...
while true
...
if function_is_on; call_function(); end
...
if condition_is_met; function_is_on = true; end
...
end
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!