how to set the figure width

I am trying to create a figure of width and height of 3 inches from an existing saved figure. How can I do this?
I would like to save this figure as a .png of the same size. Can I save this as png of this (3x3 inches) size.
I have also noticed that some parts of the labels disappears when saving it to .png. Why is this so? How do I prevent this?
Many thanks,

 採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 4 月 30 日
編集済み: Azzi Abdelmalek 2013 年 4 月 30 日

0 投票

figure
set(gcf,'paperunits','inches')
set(gcf,'position',[0 0 3 3])
saveas(gcf,'fig1.png')

3 件のコメント

Lizan
Lizan 2013 年 4 月 30 日
How do I fetch the figure name so I will change this to an existing figure of my choice?
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 4 月 30 日
What do you mean?
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 4 月 30 日
編集済み: Azzi Abdelmalek 2013 年 4 月 30 日
name='fig_choice.png'
saveas(gcf,name)

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCreating, Deleting, and Querying Graphics Objects についてさらに検索

製品

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by