How to execute .m file by pressing Push button in the created GUI?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Aishwarya D
el 22 de Abr. de 2014
Comentada: sed banj
el 30 de Abr. de 2022
I have tried using run(.m). but it's not working.
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) run(tikhnovphh1)
0 comentarios
Respuesta aceptada
Chandrasekhar
el 22 de Abr. de 2014
write only the file name instead of run(tikhnovphh1).
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)
tikhnovphh1; %m file to be executed.
4 comentarios
Othmane ELMOUATAMID
el 18 de Jul. de 2018
Editada: Othmane ELMOUATAMID
el 18 de Jul. de 2018
Thank you, it works well.
Más respuestas (1)
Ver también
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!