I need to run a .sh file through MATLAB GUI. Is there a way to do that?

2 ビュー (過去 30 日間)
TUSHAR TYAGI
TUSHAR TYAGI 2019 年 10 月 28 日
回答済み: Meet 2025 年 1 月 17 日
I need to run a python program through my MATLAB GUI. The GUI has a push button. Is there a way to do so?

回答 (1 件)

Meet
Meet 2025 年 1 月 17 日
Hi Tushar,
You can run a python program through MATLAB App Designer, by peforming the following steps:
  1. Create a new app using MATLAB App Designer.
  2. Add a button and set a callback function for the same.
  3. Mention the following command if you want to run a python file from the GUI.
% 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!!

カテゴリ

Help Center および File ExchangeCall Python from MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by