Effacer les filtres
Effacer les filtres

GUI graph marker that moves with a slider

5 vues (au cours des 30 derniers jours)
Tyler Martin
Tyler Martin le 19 Avr 2017
Hello guys,
I am a complete Matlab novice and need some help. I am trying to create a GUI with push buttons reading an excel file and plotting a graph to the axes. I also need two sliders to control a marker that traces the graph. How can I set the sliders to read from the graph and trace it with a line?
  1 commentaire
Jan
Jan le 19 Avr 2017
The question is not clear. What does "tracing a graph" mean? What is "read from the graph and trace it with a line"?

Connectez-vous pour commenter.

Réponse acceptée

Chaitral Date
Chaitral Date le 24 Avr 2017
Please refer to the sample code given below. It will give you an idea about how you can control the position of the marker using sliders.
fig=plot(1:10)
txt = uicontrol('Style','text',... 'Position',[400 45 120 20]); L1=line(1,1,'Marker','*'); SL1=uicontrol('Style','slider','Min',1,'Max',4,'Value',3,'Position', [400 20 120 20],... 'Callback',@(obj,~)updatestring(obj,txt,L1));
function updatestring(obj,txt,L1) txt.String=obj.Value; L1.XData=obj.Value; L1.YData=obj.Value; end
I hope this helps.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by