why this command does not work
조회 수: 2 (최근 30일)
이전 댓글 표시
"pause ()" i used this command in my function and i use this function in my gui and i acquire data from simulink when i start this function which contain "pause command" data from simulink stopped until i exit the function which contain "pause command" what can i do?
댓글 수: 1
TAB
2012년 7월 9일
It is not clear, how you are acquiring data from simulink and in which function you are calling pause().
Please explain your problem with neat details.
답변 (1개)
Luffy
2012년 7월 5일
편집: Walter Roberson
2012년 7월 8일
Try command:
To pause your code at a point try,
uiwait;
at the point where you want to resume execution of your code try,
uiresume;
댓글 수: 3
Luffy
2012년 7월 6일
편집: Walter Roberson
2012년 7월 8일
So you do not want data from Simulink to stop until you exit function,you still want data to come,
Try ,
pause on;
pause(n) % n is n.o seconds
참고 항목
카테고리
Help Center 및 File Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!