Need help in getting value in uitable and doing strcmp ==1
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Bertrand Low
le 17 Avr 2019
Commenté : Bertrand Low
le 18 Avr 2019
I am doing a uitable function in a GUI and one of the column consist of popupmenu. In the popupmenu, if the user selects A, the strcmp will reflect it as 1, otherwise it's 0.
This is my function code.
function uitable2_CellEditCallback(hObject, eventdata, handles)
uitable2 = get(handles.uitable2,'Data')
strcmp(uitable2(1,1),'A')
However, I am getting this error:
Not enough input arguments.
Error in work_file>uitable2_CellEditCallback (line 7067)
uitable2 = get(handles.uitable2,'Data')
Error while evaluating Table CellEditCallback
Anyone here able to advise? Thanking you in advance.
0 commentaires
Réponse acceptée
Walter Roberson
le 17 Avr 2019
Modifié(e) : Walter Roberson
le 17 Avr 2019
I suspect you coded the table CellEditCallback function yourself, and that when you did, that you did not use interface code to insert the handles into the call to uitable2_CellEditCallback . MATLAB only passes two arguments automatically and not handles; when GUIDE is responsible for creating a callback, then it uses extra logic to insert the handles structure into the call.
You can probably insert the line
handles = guidata(hObject);
just before the reference to handles.uitable2. On the other hand, chances are that you can instead convert your get into
uitable2 = get(hObject, 'Data');
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Develop Apps Using App Designer 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!