Calling back the previous value of the GUI slider

3 visualizzazioni (ultimi 30 giorni)
Munir Suleman
Munir Suleman il 21 Giu 2019
Risposto: Geoff Hayes il 22 Giu 2019
Hi all
I'm new to Matlab GUI. I'm trying to get the initial position of the slider before the person clicks on the arrows or drags the slider.
I want to be able to get the change in the slider position (dt) and since I can already get the end position of the slider from the callback, how do I get the previous position?
Is addlistner the solution? If so I have no idea how it works so an explanation would be very helpful :)
Alternatively, I know the value is only given in the callback when the user unclicks the mouse from the slider. Is there a way to get the slider value when the user clicks the slider? (i.e. the starting position of the slider)
Thank you

Risposte (1)

Geoff Hayes
Geoff Hayes il 22 Giu 2019
Munir - you haven't said whether you are using GUIDE, App Designer, or programmatically creating your GUI, but in all three cases, you would want to do something like
  1. On GUI start, save the initial position of the slider (to the handles structure if using GUIDE, or as a property if using App Designer)
  2. When the slider callback fires, get the new position of the slider and calculate the difference with that of the initial position (stored in the handles strcuture or as a property).
  3. Replace the previously stored position of the slider with the new position.
In this manner, you will always have the last known position of the slider.

Categorie

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

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by