How to making a movie clip from polar plots with a legend
3 次查看(过去 30 天)
显示 更早的评论
The function getframe does not include a part of the legend which is located outside the axis of a polar plot. I'd like to know how to include total figure of the polar plot for making a movie clip. The key script I used is as follows.
polar(x,y)
h_legend=legend(str_legend,'Location','Northeast');
set(h_legend,'Position',[0 0 0.4429 0.3349])
F=getframe;
0 个评论
采纳的回答
KSSV
2017-3-24
figure(1)
filename = 'testnew51.gif';
for n = 1:10
polar(rand(5,1),rand(5,1))
h_legend=legend('Test','Location','Northeast');
set(h_legend,'Position',[0 0 0.4429 0.3349])
drawnow
frame = getframe(1);
im = frame2im(frame);
[imind,cm] = rgb2ind(im,256);
if n == 1;
imwrite(imind,cm,filename,'gif', 'Loopcount',inf);
else
imwrite(imind,cm,filename,'gif','WriteMode','append');
end
end
I think legend is very much included in the frame.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!