Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

why is this code not working pls help me out

3 Ansichten (letzte 30 Tage)
Hijab Zainab
Hijab Zainab am 12 Okt. 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
function pushbutton1_Callback(hObject, eventdata, handles)
u=get(handles.popupmenu1,'Value');
v=get(handles.popupmenu1,'Value');
if u == 1 && v ==1
x_String = get(handles.edit1,'String');
x_numeric = str2num(x_String);
result = x_numeric*2;
result_String = num2str(result_numeric);
set(handles.text1,'String',result_String);
result_String = num2str(result_numeric);
set(handles.text1,'String',result_String);
elseif v == 2
%stuff here
elseif v == 3
%stuff here
end
  2 Kommentare
Image Analyst
Image Analyst am 12 Okt. 2018
Other than duplicating the last two lines, what doesn't work about it? Do you have an error message? Or it just doesn't do what you want?
Hijab Zainab
Hijab Zainab am 12 Okt. 2018
Bearbeitet: Hijab Zainab am 12 Okt. 2018
Error in @(hObject,eventdata)untitled1('pushbutton1_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating UIControl Callback
can u pls help me with the alternative code if im doing something wrong

Antworten (1)

OCDER
OCDER am 12 Okt. 2018
Wild solution guess:
Do not start the GUI by double-clicking the .fig file. Instead, start the GUI by running the .m file.

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by