Printing to MATLAB command window using a Python Function

조회 수: 40 (최근 30일)
Tyler
Tyler 2019년 12월 12일
댓글: Brian Harris 2022년 3월 22일
I am wondering if anyone has been able to print to the MATLAB command window using a Python function. Right now, I have my program interfaced where MATLAB calls on a Python Function and this executes correctly. However, the Python function is kind of complicated, so it would help me greatly with debugging if I was able to view the print statements that exist within my python script. Is there a way to interface MATLAB and Python to where these print statements get sent to MATLAB and shown on MATLAB's command window?

답변 (1개)

Nicolas B.
Nicolas B. 2019년 12월 13일
I have never tried this but there is a MATLAB API for python (Calling MATLAB from Python). Than, there is a special way to get connected to the running session of MATLAB (Connect Python to Running MATLAB Session).
Finally, you have here an example how to call MATLAB functions from python: Call User Scripts and Functions from Python
I see one potential difficulty in your case because you are running Python from MATLAB, it is highly probable that MATLAB will be waiting to the end of your script before displaying anything or maybe, it will display nothing (I haven't tested it). So once you have tried it, you would be more than welcome to post here your experience. It could be beneficial for the community.
  댓글 수: 1
Brian Harris
Brian Harris 2022년 3월 22일
Confirmed your guess that "it is highly probable that MATLAB will be waiting to the end of your script before displaying anything". Created a "printme.py" file with:
import time
def printme(wait: int=5):
print('mefirst')
print('flushme', flush=True)
time.sleep(wait)
print('mesecond')
then ran:
py.printme.printme();
and got both prints at the same time after a 5 second pause...

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by