how can i plot in the axes of other gui??????
2 次查看(过去 30 天)
显示 更早的评论
hello; i have two gui with buttons and axe i want to plot in the second axe *of the *second gui by cliking int the button on the first gui with the informations in the first gui how can i do ?????
0 个评论
回答(1 个)
Walter Roberson
2015-11-14
findobj() the Tag for the second axes to get its handle. Then use that handle in your plotting calls, either by passing it as the first parameter to the plotting routines (supported by many plotting routines) or by using the axes as the 'Parent' property for plotting routines that allow you to pass Name/Value pairs. For example,
TheOtherAxes = findobj('Tag', 'Gui2axes');
plot(TheOtherAxes, rand(1,20));
4 个评论
Walter Roberson
2015-11-15
possible_axes = findobj('Tag', 'axes1');
axes_figures = ancestor(possible_axes, 'figure');
if iscell(axes_figures); axes_figures = cell2mat(axes_figures); end
current_figure = ancestor(gcf, 'figure');
possible_axes = possible_axes(axes_figures ~= current_figure);
if length(possible_axes) ~= 1
error('Could not find unique axes1 belonging to another GUI');
end
TheOtherAxes = possible_axes;
plot(TheOtherAxes, rand(1,20)); %plot on it
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!