Change x-axis with uicontrol slider
6 views (last 30 days)
Show older comments
Hello, I want to plot x vs y and be able to use a slider to change the value on the x-axis x goes from 0 to 1000 in my example. I want to use a slider to interactive change the x-axis so I only look at for example 100 to 200 or something like that.
function uicontrol
figure
x=[0:1000];
y=x*100;
hax=plot(x,y)
uicontrol('Style', 'slider',...
'Min',1,'Max',50,'Value',41,...
'Position', [400 20 120 20],...
'Callback', {@xlim,hax});
uicontrol('Style','text',...
'Position',[400 45 120 20],...
'String','change x')
end
function xlim(hObj,x)
xlim(x,[0 20]);
end
I get the following error message
Error using Slider>xlim Too many input arguments.
Error while evaluating uicontrol Callback
I could use some help, I am new to uicontrol and sliders
0 Comments
Accepted Answer
Adam
on 12 Dec 2014
Edited: Adam
on 12 Dec 2014
To answer your last post which should have been a comment rather than an answer:
hax = plot(x,y)
returns a handle to the line object(s) that was plotted, not the axes on which it/they was plotted.
Also your callback syntax still looks wrong. The following should work, with variant depending on what you want:
figure; hAxes = gca;
plot( 1:25, rand(1,25) )
uicontrol('Style', 'slider', 'Min',1,'Max',50,'Value',41, 'Position', [400 20 120 20], 'Callback', @(src,evt) hax( src, hAxes ) );
function hax( src, hAxes )
xlim( [0 get( src, 'Value' )] )
More Answers (2)
matt dash
on 8 Dec 2014
All callbacks come with TWO builtin inputs. you forgot the 2nd "eventdata" input. You should have:
function xlim(hObj,eventdata,x)
2 Comments
matt dash
on 9 Dec 2014
Edited: matt dash
on 9 Dec 2014
Oh, well now i see another problem. You named your function xlim, and in it you try to call the builtin function xlim. You can't have both. The error is now happening because the xlim(x,[0 20]) is trying to call your 3-input xlim function, so once again it has too few inputs.
Just name your function anything other than xlim and you'll be fine.
Edit: If you don't want to rename your function, the other option is to call the builtin function to explicitly tell your code which version of xlim you're trying to call:
builtin('xlim',x,[0 20])
See Also
Categories
Find more on Migrate GUIDE Apps in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!