two figures popping problem??

when I make a figure with an axis I always get another figure appearing. How to stop the second one?is it because the drawnow command?
figname = figure( );
ax = axes('Parent', figname,'XLim',[0 200],'YLim',[0 200]);
.
.
.
drawnow()

 採用された回答

Image Analyst
Image Analyst 2012 年 1 月 29 日

1 投票

I copied and pasted your code:
figname = figure( );
ax = axes('Parent', figname,'XLim',[0 200],'YLim',[0 200]);
drawnow()
and I only get one figure window. You must be doing something additional to cause the additional figure window to appear.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeGraphics Performance についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by