필터 지우기
필터 지우기

How do I setup the Python Interpreter for Matlab 2014b for Windows OS

조회 수: 1 (최근 30일)
In Matlab 2014b there is support for calling Python directly from Matlab.
See help CallPythonExample for an example
But I'm running Windows and the example doesn't work.
T = 'MATLAB® is a high-level language and interactive environment for numerical computation, visualization, and programming. Using MATLAB, you can analyze data, develop algorithms, and create models and applications. The language, tools, and built-in math functions enable you to explore multiple approaches and reach a solution faster than with spreadsheets or traditional programming languages, such as C/C++ or Java™.';
wrapped = py.textwrap.wrap(T);

채택된 답변

Jim Hokanson
Jim Hokanson 2014년 10월 4일
편집: Jim Hokanson 2014년 10월 4일
Use:
pyversion(executable_path)
to specify the path to the Python executable.
In Python you can run:
import sys
print(sys.executable)
to get the executable_path
  댓글 수: 2
Sahel Fallahdoust
Sahel Fallahdoust 2017년 12월 12일
can it be done within the Matlab code (like in the beginning of the function for example)? Cause I have a matlab exe which is calling to some python modules but when I run the exe, it's like it can not find the python executable.
Jim Hokanson
Jim Hokanson 2017년 12월 12일
These questions are best asked as a separate question. I don't know the answer off the top of my head.

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

추가 답변 (0개)

카테고리

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