Change x-axis with uicontrol slider
6 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Adam
2014-12-12
编辑:Adam
2014-12-12
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' )] )
更多回答(2 个)
matt dash
2014-12-8
All callbacks come with TWO builtin inputs. you forgot the 2nd "eventdata" input. You should have:
function xlim(hObj,eventdata,x)
2 个评论
matt dash
2014-12-9
编辑:matt dash
2014-12-9
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])
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!