How do you save the figures of a surface plot in some named file so that you can later used the saved figures to put together a movie?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I used the following below, but it does not work.
for j = 1 : : 1: 1000;
F (j) = getframe(gcf); %capture an image
image(F.cdata);
colormap(F.colormap);
j = j+1;
end
0 commentaires
Réponses (1)
Walter Roberson
le 19 Fév 2014
Modifié(e) : Walter Roberson
le 19 Fév 2014
But look also at the "AVI file from animation" example at http://www.mathworks.com/help/matlab/ref/videowriterclass.html
0 commentaires
Voir également
Catégories
En savoir plus sur Animation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!