3D matrix surface plot animation

29 views (last 30 days)
Hello!
I have a 3D matrix with multiple layers. I want to simulate these layers in an animated surface plot in a way that e.g. every second a new layer is shown. Is it possible to do that? If yes, how?

Accepted Answer

Star Strider
Star Strider on 9 Jun 2021
Try this —
M = rand(10,10,5); % Create Test Matrix
figure
for k = 1:size(M,3)
surf(M(:,:,k))
axis([0 11 0 11 0 1])
drawnow
pause(1)
end
Thsi works correctly in R2021a.

More Answers (0)

Categories

Find more on Animation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!