How to animate the plot back and forth for unlimited cycles?

조회 수: 6 (최근 30일)
Ahmed Anas
Ahmed Anas 2020년 2월 9일
댓글: Mike Migliore 2022년 2월 4일
Take the example of code pasted below.
I just want that the ball move back and forth again and again until some body closes the figure. I used 'while true' loop but it is not useful in this regard.
x = linspace(-1, 1, 75);
y = -x.^2;
figure(1)
for k2 = 1:2
for k1 = 1:length(x)
plot(x(k1)*(-1)^k2, y(k1), 'ob', 'MarkerFaceColor','r')
axis([min(x) max(x) min(y) max(y)])
refreshdata
drawnow
end
end

채택된 답변

Subhadeep Koley
Subhadeep Koley 2020년 2월 10일
Define a figure CloseRequestFcn like below
function my_closereq(src, callbackdata)
selection = questdlg('Close This Figure?',...
'Close Request Function',...
'Yes','No','Yes');
switch selection
case 'Yes'
delete(gcf);
case 'No'
return
end
end
And use this script
x = linspace(-1, 1, 75);
y = -x.^2;
fig = figure('CloseRequestFcn', @my_closereq);
ax = axes(fig);
while true
for k2 = 1:2
for k1 = 1:length(x)
plot(ax, x(k1)*(-1)^k2, y(k1), 'ob', 'MarkerFaceColor','r')
axis([min(x) max(x) min(y) max(y)])
refreshdata
drawnow
end
end
end
Hope this helps!
  댓글 수: 2
Ahmed Anas
Ahmed Anas 2020년 2월 10일
Yeah, it solved the issue... Thanks bro
Mike Migliore
Mike Migliore 2022년 2월 4일
How would I go about altering this. I'd like the dot to switch directions rather than starting over from the initial position. So it would be bouncing back and forth instead.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by