Using uicontrol in a figure

12 views (last 30 days)
Ryan Aldrich
Ryan Aldrich on 6 Jun 2011
I have a script that I use to plot track data that has three subplots within a figure. I want to use uicontrol to create a toggle button that has a callback to the matlab function grid so that I can toggle the grid on and off. The problem is that I can only toggle the grid in the last subplot but it doesn't work for the first two. Here's most of my plotting script:
%%Set up axes
figure('numbertitle','off')
set(gcf,'Name',filename);
h1 = gcf;
axis off
%%X Plots
subplot(2,2,1)
ax = gca;
%x_axis = get(ax);
xlim([t(1) t(end)])
ylim([-10 30])
ylabel('x [m]')
grid on
hold on
%%Y Plots
subplot(2,2,3)
ay = gca;
%y_axis = get(ay);
h3 = plot([t(1) t(end)],[-half_lane -half_lane],'--',...
[t(1) t(end)],[half_lane half_lane],'--');
set(h3,'Color',[0.5 0 0])
ylabel('y [m]'), xlabel('time [sec]')
xlim([t(1) t(end)])
ylim([-10 10])
grid on
hold on
%%X-Y Plot
subplot(2,2,[2 4])
axy = gca; % get the axis information
xy_axis = get(axy);
car_y = [0 -5.182] + xy_axis.YLim(1);
load 'car.mat'; image([-0.9350 0.9350], car_y, car); clear car; % plot the car for reference
set(gca,'YDir','normal','XDir','reverse'), hold on
xlim([-10 10]);
ylim([-10 25]);
xlabel('y [m]'), ylabel('x [m]')
title(filename,'interpreter','none')
grid on
axis equal
arc_plot([-sensor(1).orientation(2) sensor(1).orientation(1)], (270-sensor(1).orientation(3)), C(1,:));
arc_plot([-sensor(2).orientation(2) sensor(2).orientation(1)], (90-sensor(2).orientation(3)), C(2,:));
arc_plot([-sensor(3).orientation(2) sensor(3).orientation(1)], (90-sensor(3).orientation(3)), C(3,:));
arc_plot([-sensor(4).orientation(2) sensor(4).orientation(1)], -(90+sensor(4).orientation(3)), C(4,:));
xy_axis = get(axy);
%%plot lane
h = plot([-half_lane -half_lane],xy_axis.YLim,'--',[half_lane half_lane],xy_axis.YLim,'--');
set(h,'Color',[0.5 0 0])
%%link axes and insert grid toggle
linkaxes([ax ay],'x');
uicontrol(h1,'Style', 'togglebutton', 'String', 'Grid',...
'Position', [20 20 50 20],...
'Callback', 'grid');

Accepted Answer

Brian Cody
Brian Cody on 6 Jun 2011
Hi Ryan,
You will need to call grid for each of the subplots in your figure. To do that, cache the return values for each of the calls to subplot, and then make one call to grid for each of the subplots, passing each of the cached handles in turn.
I'm not sure whether your code is executing in a script or as part of a larger program, so you might be able to just write the three calls inline in your uicontrol call (i.e. ('Callback', 'grid(ax1);grid(ax2),grid(ax3)')) or you may need to put these calls in another function.
I hope this helps,
-Brian
  2 Comments
Ryan Aldrich
Ryan Aldrich on 6 Jun 2011
Ok, I put those calls into another function and now I'm getting this error that says "First arguement must be an axis handle." I defined ax, ay, and axy as the current axis handles for all three subplots so I don't understand the problem. This is my separate function which is in it's own separate m file that's called within the uicontrol as ('Callback', @grid_toggle).
function grid_toggle(ax,ay,axy)
grid(ax);
grid(ay);
grid(axy);
end
Ryan Aldrich
Ryan Aldrich on 6 Jun 2011
I figured out how to make it all work. Here is what I did:
S(1:3) = struct('axis_handle', NaN);
S(1).axis_handle = ax;
S(2).axis_handle = ay;
S(3).axis_handle = axy;
uicontrol('Style', 'togglebutton', 'String', 'Grid',...
'Position', [20 20 50 20],...
'Callback', {@grid_toggle,S});
function [] = grid_toggle(varargin)
S = varargin{3}; % Get the structure.
for i = 1:3
grid(S(i).axis_handle);
end
end

Sign in to comment.

More Answers (1)

Paulo Silva
Paulo Silva on 6 Jun 2011
The grid command like you have in the callback only applies to the current axes so you have to do it for all axes, use the grid command with the axes handles or do something like this:
set(findall(0,'type','axes'),'XGrid','on');set(findall(0,'type','axes'),'YGrid','on') %this turns on all grids on all axes objects.
  2 Comments
Walter Roberson
Walter Roberson on 6 Jun 2011
Abbreviating the above:
set(findall(0,'type','axes'),'XGrid','on','YGrid','on')
Paulo Silva
Paulo Silva on 6 Jun 2011
thanks Walter :)

Sign in to comment.

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!