Azzera filtri
Azzera filtri

Change x-axis with uicontrol slider

9 visualizzazioni (ultimi 30 giorni)
Daniel
Daniel il 8 Dic 2014
Modificato: Adam il 12 Dic 2014
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

Risposta accettata

Adam
Adam il 12 Dic 2014
Modificato: Adam il 12 Dic 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' )] )
  1 Commento
Daniel
Daniel il 12 Dic 2014
Thank you. I got the slider to work with your comments. Now I can adjust and evolve something on my own.

Accedi per commentare.

Più risposte (2)

matt dash
matt dash il 8 Dic 2014
All callbacks come with TWO builtin inputs. you forgot the 2nd "eventdata" input. You should have:
function xlim(hObj,eventdata,x)
  2 Commenti
Daniel
Daniel il 9 Dic 2014
Thank you
So now I have
function xlim(hObj,eventdata,x)
xlim(x,[0 20]); end
But it still give me the same error message. What am I still doing wrong?
matt dash
matt dash il 9 Dic 2014
Modificato: matt dash il 9 Dic 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])

Accedi per commentare.


Daniel
Daniel il 12 Dic 2014
Thank you for your support Matt. I still can not get it to work.
My code now looks like this
%function uicontrol
clear all
delete all
figure
x=[0:1000];
y=x*100;
hax=plot(x,y)
% xlim([0 100]); uicontrol('Style', 'slider',... 'Min',1,'Max',50,'Value',41,... 'Position', [400 20 120 20],... 'Callback', {@xg,hax}); uicontrol('Style','text',... 'Position',[400 45 120 20],... 'String','change x') end
function xg(hObj,eventdata,x)
xg(x,[0 20]);
end

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by