how to make a push button to be pressed 3 times after other push button is pressed ?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dany Majed
am 25 Mär. 2019
Kommentiert: Dany Majed
am 25 Mär. 2019
Hello,
so i created two pushbuttons in gui in matlab so let us call the first pushbutton pushbutton1 and lets call the second push button pushbutton2 this is already done but just written this for clarification so my question is how could i make when pushbutton2 is pressed in the gui it causes pushbutton1 to be pressed 3 times after each other since in pushbutton1 i am having a specific functions and plots and matrices so i need the user once he presses the pushbutton2 so it could cause the pushbutton1 that contains functions plots and matrices to be pressed 3 times. Thanks in advance.
0 Kommentare
Akzeptierte Antwort
Kevin Phung
am 25 Mär. 2019
You can jsut call out the callback for pushbutton2 three times in your callback for pushbutton1.
button1 = uicontrol('style','pushbutton','callback',@push1callback)
button2 = uicontrol('style','pushbutton','callback',@push2callback)
function push1callback(hObj,event)
%this button gets pushed
disp('first button is pushed')
for i = 1:3
push2callback % runs the second button 3 times.
end
end
function push2callback(hObj,event)
disp('Second button is pushed')
end
5 Kommentare
Kevin Phung
am 25 Mär. 2019
The reason why I asked is becaause you are not using an if/else statement correctly. Your elseifs do not run if a condition before it is satisfied. And, like I said in my answer, you can just use a forloop to run the callback multiple times:
% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
for i=1:3
pushbutton2_Callback
end
end
% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps 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!