필터 지우기
필터 지우기

how to switch on a function for a specific condition is met

조회 수: 1 (최근 30일)
Sharad Patel
Sharad Patel 2017년 3월 20일
답변: Walter Roberson 2017년 3월 20일
how to switch on a function for a specific condition is met

채택된 답변

Walter Roberson
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개)

카테고리

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

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by