pause loop with "if" statement?

조회 수: 21 (최근 30일)
MSolano
MSolano 2021년 8월 31일
댓글: MSolano 2021년 9월 2일
Hello everyone
I'm using App Designer to do an animation with a while loop, I want the animation to pause when time reaches a value (let's say 5) I use an "if" statement to do that so I have the code below
The problem is that when I say: if (toc(t_h)-app.PauseTime) == 5 it does nothing (the animation doesn't stop)
but if I write: if (toc(t_h)-app.PauseTime) > 5 instead it does work but I don´t want it to stop in 5.01 or 4.99 I need it to stop in the exact 5
I any of you could give me a clue I would really appreciate that. Thanks!
properties (Access = public)
PauseTime = 0; % Description
PauseHandle = tic;
end
% Callbacks that handle component events
methods (Access = private)
% Button pushed function: StartButton
function StartButtonPushed(app, event)
close all
set(app.StartButton,'Text','Restart')
time = 60;
set(app.UIAxes, 'units','points')
cla(app.UIAxes);
cla(app.UIAxes2);
R = 65;
ang=linspace(0,2*pi,50);
xp=R*cos(ang);
yp=R*sin(ang);
% Animation
% Draw outter circle
patch(app.UIAxes,xp,yp,'w')
hold(app.UIAxes,'on');
hold(app.UIAxes2,'on');
axis(app.UIAxes, 'equal');
f = 0.016;
Nb=10;
% Balls
rho1 = 55;
n = linspace(0,360,Nb+1);
line = plot(app.UIAxes,NaN,NaN,'o', 'LineWidth', 1, 'MarkerSize', 15, 'color', 'k');
% Mark on 1st ball
mark = plot(app.UIAxes,NaN,NaN,'*', 'LineWidth', 1, 'MarkerSize', 5, 'color', 'r');
% Fixed Mark
plot(app.UIAxes,[55 65],[0 0], 'LineWidth', 5,'color','r');
% Sine Wave
% Static
Swx = linspace(0,time,time*100);
Swy = (pi/2)*sind(360*Swx*f);
plot(app.UIAxes2,Swx,Swy,'LineWidth', 1, 'MarkerSize', 1, 'color', 'k');
% Moving point Sine Wave
sw = plot(app.UIAxes2,NaN,NaN,'o', 'LineWidth', 1, 'MarkerSize', 5, 'color', 'r','MarkerFaceColor','r');
t_h=tic;
app.PauseTime=0;
while (toc(t_h)-app.PauseTime) < time
% Balls
t1=toc(t_h)-app.PauseTime;
f1 = f*360;
line.XData = rho1*cosd(n+f1*t1) ;
line.YData = rho1*sind(n+f1*t1) ;
app.Time.Value = t1;
% Point on sinewave
t2=toc(t_h)-app.PauseTime;
sw.XData = t2;
sw.YData = (pi/2)*sind(360*f*t2);
% Slider
t3=toc(t_h)-app.PauseTime;
app.Slider.Value = t3;
% Mark
t4=toc(t_h)-app.PauseTime;
f1 = f*360;
mark.XData = rho1*cosd(f1*t4);
mark.YData = rho1*sind(f1*t4);
if (toc(t_h)-app.PauseTime) == 5
PauseButtonPushed(app, matlab.ui.eventdata.ButtonPushedData)
end
drawnow
end
end
% Button pushed function: PauseButton
function PauseButtonPushed(app, event)
app.PauseHandle = tic;
uiwait(app.animation)
end
% Button pushed function: ResumeButton
function ResumeButtonPushed(app, event)
app.PauseTime = app.PauseTime + toc(app.PauseHandle);
uiresume(app.animation)
end
  댓글 수: 1
Fangjun Jiang
Fangjun Jiang 2021년 8월 31일
floating-point data equal comparison issue?
1-1/3==2/3

댓글을 달려면 로그인하십시오.

채택된 답변

cr
cr 2021년 9월 1일
You must give it a range of time period rather than a unique time point since the execution doesn't guarantee the particular line toc() will be executed at t = 5s. If you need it to stop only once try giving a shorter period.
  댓글 수: 1
MSolano
MSolano 2021년 9월 2일
Thank you! this was it

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by