Can the MATLAB Engine API implement interactive operations in the MATLAB Command Window?
2 views (last 30 days)
Show older comments
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 Comments
Answers (1)
SACHIN KHANDELWAL
on 25 Jun 2024
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!
See Also
Categories
Find more on Call MATLAB from Python in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!