Effacer les filtres
Effacer les filtres

read the value of radio button with push button call back

5 vues (au cours des 30 derniers jours)
Zine
Zine le 4 Avr 2014
Réponse apportée : Zine le 4 Avr 2014
I created a programmatic gui that calls another gui (included in the same .m file), that second gui has several uicontrols and has a group of three radio buttons and a push button, I want to get which radio button is selected in the group when clicking the push button, I am a beginner with Matlab so I tried several methods but I did not achieve my objective, the push button call back is after the group creation code
how to do that please, Thanks in advance
  2 commentaires
Jan
Jan le 4 Avr 2014
Without seeing the code, it is hard to guess, what might help you efficiently. We cannot imagine e.g., if you store the handles by setappdata or guidata or perhaps in the figure's UserData. Please post more details and show, what you have tried already.
Zine
Zine le 4 Avr 2014
Hi Jan, thanks for reply, I used first the simple code inside the pushbutton callback:
function []=pbtransvalid_Call(hObject, eventdata, handles,varargin)
global myData
value1 = get(handles.ksigmazero, 'value');
value2 = get(handles.sigmazero, 'value');
value3 = get(handles.nonzero, 'value');
if value1
myData.valt = 100;
elseif value2
myData.valt = 200;
elseif value3
myData.valt = 300;
end
myData is global data structure that I use for all the program declared in the first line of each function or callback as
global myData
if I send the initial status of the group it will not help because the user changes the status before pushing valid button, it sends an error message saying
Undefined function 'pbtransvalid_call' for input arguments of
type 'double'.
Error while evaluating uicontrol Callback

Connectez-vous pour commenter.

Réponse acceptée

Zine
Zine le 4 Avr 2014
Thanks to whom answered and tried to answer me; I found a solution for that by using this answer just adjust it according to the problem

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by