Help please. i have 2 axes plots on my GUI , i want to reset the output plot(clear the previous output from plot) as i press the load image image button.
    3 ビュー (過去 30 日間)
  
       古いコメントを表示
    
please help
0 件のコメント
採用された回答
  Image Analyst
      
      
 2015 年 2 月 9 日
        In the LoadImage button callback:
% Reset first axes.
axes(handles.axes1);  % Whichever axes you want to reset.
cla('reset');
% Reset second axes.
axes(handles.axes2);  % Whichever axes you want to reset.
cla('reset');
axes(handles.axes1);  % Whichever axes you want to display in.
imshow(yourImage);
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Creating, Deleting, and Querying Graphics Objects についてさらに検索
			
	製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!