Can the MATLAB Engine API implement interactive operations in the MATLAB Command Window?
2 次查看(过去 30 天)
显示 更早的评论
In the MATLAB interface window, when running some programs or scripts, some interactive instructions are required, such as giving a prompt in the command window and asking the user to enter some numbers ,Y or N, and pressing the enter key, then the program will continue to execute based on the input content. Can the above operation be achieved using Python through the Matlab Engine API interface without opening the Matlab interface now?The following is a function that requires interactive operations in the command window of Matlab:
function my_function()
disp('Step 1: Please enter a number:');
x = input('');
disp(['You entered: ', num2str(x)]);
disp('Step 2: Please enter another number:');
y = input('');
disp(['You entered: ', num2str(y)]);
end
How to use Python to call the above function through the Matlab Engine API and achieve its normal operation? The prompt words and input content are completed through programming or input in Python.
0 个评论
回答(1 个)
SACHIN KHANDELWAL
2024-6-25
You can use the MATLAB Engine API to interact with MATLAB from Python. However, if you need to perform interactive operations in the MATLAB command window, it can be tricky.
Instead, I recommend using MATLAB's built-in functions directly in your Python code to streamline your workflow. For more details, check out the MathWorks documentation on the MATLAB Engine API for Python.
https://www.mathworks.com/help/matlab/matlab_external/call-user-script-and-function-from-python.html
You might also find the following getting started page helpful for your workflow:
Hope it helps!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Call MATLAB from Python 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!