How can I animate my 3d surface like this?
Mostra commenti meno recenti
Hi guys,
I want to present my data in a cool animated fashion as shown in this video: http://www.youtube.com/watch?v=JaMgi4XBjo8
Can this be done in MatLab? I'd be happy if the outputs were in form of a GIF or a movie?
Thank you
Risposte (2)
Titus Edelhofer
il 12 Nov 2014
Hi,
take a look at the function
doc VideoWriter
which includes a simple example.
Titus
1 Commento
A
il 18 Nov 2014
Image Analyst
il 18 Nov 2014
0 voti
See attached demo where I make a movie from animation being done by the surf() function.
2 Commenti
Image Analyst
il 2 Gen 2015
To rotate your "camera", how about camorbit():
close all;
surf(peaks)
axis vis3d
for i=1:36
camorbit(10,0,'data',[0 1 0])
drawnow
pause(0.2);
end
Nitin Phadkule
il 22 Ago 2021
short and useful, helped me to use
Categorie
Scopri di più su Animation in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!