We want to express the ball bounce in two dimensions.

1 view (last 30 days)
We even made a graph representing projections.The next goal is to express ball bouncing. Among the attached images, the image with the GUI is the program we created. In the program we made, the ball doesn't bounce. Like the second image added, I want the ball to bounce in the program we made.

Answers (1)

Image Analyst
Image Analyst on 28 Nov 2021
To animate your plot you can plot one point at a time and then put pause(0.1) in to slow it down.
for k = 1 : length(x)
plot(x(k), y(k), 'bo', 'MarkerSize', 20);
drawnow;
pause(0.2); % Use a bigger number to slow it down.
end

Categories

Find more on Animation in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!