Can i record a figure as it is being plotted so that i can send it as an email attachment and viewed by someone who does not have matlab?
Mostrar comentarios más antiguos
Please do tell me whether this possible- or suggest the closest solution.
Respuestas (1)
bio lim
el 13 de Jul. de 2015
writerObj = VideoWriter('example.avi');
writerObj.FrameRate = 60;
open(writerObj);
Z = peaks; surf(Z);
axis tight
set(gca,'nextplot','replacechildren');
set(gcf,'Renderer','zbuffer');
for k = 1:20
surf(sin(2*pi*k/20)*Z,Z)
frame = getframe;
writeVideo(writerObj,frame);
end
close(writerObj);
The animated plot is saved as an .avi file.
4 comentarios
Walter Roberson
el 13 de Jul. de 2015
When you use VideoWriter, every frame must be exactly the same size.
yashvin
el 15 de Jul. de 2015
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!