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!