how to switch on a function for a specific condition is met
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Sharad Patel
il 20 Mar 2017
Risposto: Walter Roberson
il 20 Mar 2017
how to switch on a function for a specific condition is met
0 Commenti
Risposta accettata
Walter Roberson
il 20 Mar 2017
function_is_on = false;
...
while true
...
if function_is_on; call_function(); end
...
if condition_is_met; function_is_on = true; end
...
end
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!