New Figure Without Using Guide

How to create a new figure with axes without using GUIDE? I want to know the command that I should use for this? Could anyone help?

 採用された回答

Walter Roberson
Walter Roberson 2012 年 1 月 28 日

0 投票

fignum = figure();
axhandle = axes('Parent', fignum);

2 件のコメント

koko kinder
koko kinder 2012 年 1 月 29 日
Thanks Walter. I have one more question. I want to draw a line which is available in another function. How do I draw it in the same defined axes. I used the parent property as follows
l3=line([x0 x2],[y0 y2]);
set(l3,'Parent',mainax,'linewidth',l_wid,'color','b');
but it can't identify it because it is in another function. Is there anyway around this?
Walter Roberson
Walter Roberson 2012 年 1 月 30 日
http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.3F

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

その他の回答 (0 件)

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by