Totally crazy behaviour of figures. Axes going around through the image!
이전 댓글 표시
Hello,
I'm working on a GUI in matlab and I ended up with a really strange behaviour in my code. I manage to isolate the problem in a single script, which is the following:
fig = figure('Name','Spatial modes', ...
'numbertitle', 'off', ...
'ToolBar', 'none', ...
'menu','none','units','normalized',...
'outerposition',[0 0 1 1]);
title('whatever')
for i = 1:100
set(0,'CurrentFigure',fig)
cla
imagesc(rand(10))
caxis auto
hand.im_caxis.val = caxis;
colormap hot
colorbar
axis ij equal tight
set(gca,'color','none')
title(num2str(i))
drawnow
pause(0.1)
end
If you try to run it, you will see that the axes of the figure shift to the right every time the image is updated. After a dozen of shifts, they start shrinking until they are invisible and eventually they go back to the original size.
What is going on? What am I missing?

채택된 답변
추가 답변 (2개)
the cyclist
2016년 8월 26일
0 개 추천
I ran your code in R2016a, and did not have the "disappearing figure" you show. It worked fine.
댓글 수: 2
Alessandro Masullo
2016년 8월 26일
Walter Roberson
2016년 8월 30일
I tested in R2015a on OS-X and do not get a shrinking plot. The labels on the colorbar move around a bit but the sizes do not change (the change in label reflects the fact that imagesc() depends upon the range of values in the data but since your data is randomly generated, the range of values changes from random matrix to random matrix.)
Image Analyst
2016년 8월 26일
I also do not observe the effect in R2016a. The best workaround is to upgrade to the latest release. Another workaround might be to get the 'Position' property of the axes the first iteration, and then use that to set it in subsequent iterations. So if it got changed somehow, that should fix it. Try adding this code:
imagesc(rand(10))
ax = gca;
if i == 1
position = ax.Position;
else
ax.Position = position;
end
댓글 수: 2
Alessandro Masullo
2016년 8월 29일
Image Analyst
2016년 8월 30일
I can't test your version, but if it was a bug then it's fixed now since I don't observe it with R2016a.
카테고리
도움말 센터 및 File Exchange에서 Color and Styling에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!