saving .fig files doesn't save position properties?

조회 수: 16 (최근 30일)
Karen
Karen 2014년 7월 7일
댓글: Geoff Hayes 2014년 7월 8일
Hi, I have been trying to save a .fig file so that it can be edited in the Matlab Figure Editor and then saved. However, I find that when I save a .fig file, any position properties are not saved. Am I doing something wrong? For example, if I run the following code:
x = 1:10;
y = 1:10;
plot(x, y);
t = title('Title');
set(t, 'position', [0 0 10]);
savefig('figure1.fig');
the title's position is not saved, although if I set other properties (fontsize, etc) those are saved. Any thoughts? Thanks!
  댓글 수: 1
Geoff Hayes
Geoff Hayes 2014년 7월 8일
You are not doing anything wrong. It may be just that the software assumes that all figure titles are displayed in the top centre. From the documentation, see title, the default behaviour is
title(str) adds the title consisting of a string, str, at the top and in the center of the current axes. Each axes graphics object has one predefined title.
The documentation doesn't discuss moving the title around, though since this is allowed, the new title position should be saved to the figure file when calling savefig. This could very well be a bug.

댓글을 달려면 로그인하십시오.

답변 (2개)

William beason
William beason 2014년 7월 7일
편집: Star Strider 2014년 7월 7일
No i don't think you should save file in wrong format. .fig files sometimes not save once try some more time or some problem in path where you save other document and figure files.
  댓글 수: 1
Karen
Karen 2014년 7월 8일
I have tried many times--I believe this is a feature of MATLAB but I am not sure if it is a bug or deliberate, or what the best workaround is.

댓글을 달려면 로그인하십시오.


Sean de Wolski
Sean de Wolski 2014년 7월 8일
Hi Karen,
That certainly looks obscure to me. Contact tech-support and let them know about it.

카테고리

Help CenterFile Exchange에서 Printing and Saving에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by