How to making a movie clip from polar plots with a legend

3 ビュー (過去 30 日間)
SeaMoon Kim
SeaMoon Kim 2017 年 3 月 24 日
コメント済み: SeaMoon Kim 2017 年 3 月 24 日
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;

採用された回答

KSSV
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.
  1 件のコメント
SeaMoon Kim
SeaMoon Kim 2017 年 3 月 24 日
It works. Thank you very much.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLegend についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by