How can I pass a figure from one function to another without printing the figure?
23 ビュー (過去 30 日間)
古いコメントを表示
Hello, I'd like to pass a figure from a 'called' function to it's calling function. Any idea how this is done? The figure is plotted as:
figure(1)
hold on
zoom on
axis square
for i=1:ele_n
line(defx(el_disp(i,:)),defy(el_disp(i,:)),'Color','r');
line(x(el_disp(i,:)),y(el_disp(i,:)));
end
1 件のコメント
Stephen23
2017 年 11 月 26 日
Just pass the figure handle:
I recommend guidata or nested functions, both of which are simple and intuitive.
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!