- Create a new app using MATLAB App Designer.
- Add a button and set a callback function for the same.
- Mention the following command if you want to run a python file from the GUI.
I need to run a .sh file through MATLAB GUI. Is there a way to do that?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I need to run a python program through my MATLAB GUI. The GUI has a push button. Is there a way to do so?
0 comentarios
Respuestas (1)
Meet
el 17 de En. de 2025
Hi Tushar,
You can run a python program through MATLAB App Designer, by peforming the following steps:
% Mention the python executable path
pythonPath = 'C:\Users\mp\AppData\Local\Programs\Python\Python311\python.exe';
% Path to your Python file
scriptPath = 'C:\Users\mp\Downloads\test.py';
% Command to execute the Python script
command = [pythonPath, ' ', scriptPath];
% Execute the command
[status, cmdout] = system(command);
I hope this helps!!
0 comentarios
Ver también
Categorías
Más información sobre Call Python from MATLAB 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!