in GUI when press button will run a program
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
marwa marwan
am 3 Nov. 2015
Kommentiert: Walter Roberson
am 3 Nov. 2015
please in GUI i want to execute a program p.m when press push button
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 3 Nov. 2015
You would have a Callback property configured for the pushbutton. Code that callback to consist of the header and then the line
p;
This will cause p to be run when the button is pressed.
For example,
function pushbutton1_callback(hObject, event, handles)
p;
3 Kommentare
Walter Roberson
am 3 Nov. 2015
firstval = get(handles.editbox1, 'String');
result = p(firstval);
set(handles.editbox2, 'String', result);
That is, you would pass the value into p (which would have to be a "function") and you would have p return the desired value, which you would send where it should go.
Reminder: the contents of edit boxes are strings or sometimes cell array of strings (depending on whether they are configured as multiline or not). If the strings represent numbers then you will need to convert them to numeric form before using their numeric value:
firstval = str2double( get(handles.editbox1, 'String') );
result = p(firstval);
set(handles.editbox2, 'String', result);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!