I need to call a python function from MATLAB. Any ideas how can I do this?
|
|
I had a similar requirement on my system and this was my solution: In MATLAB there is a function called perl.m, which allows you to call perl scripts from MATLAB. Depending on which version you are using it will be located somewhere like
Create a copy called python.m, a quick search and replace of perl with python, double check the command path it sets up to point to your installation of python. You should now be able to run python scripts from MATLAB. Example A simple squared function in python saved as "sqd.py", naturally if I was doing this properly I'd have a few checks in testing input arguments, valid numbers etc.
Then in MATLAB
|
|||||||||||
|
|
You could embed your Python script in a C program and then MEX the C program with MATLAB but that might be a lot of work compared dumping the results to a file. You can call MATLAB functions in Python using PyMat. Apart from that, SciPy has several MATLAB duplicate functions. But if you need to run Python scripts from MATLAB, you can try running system commands to run the script and store the results in a file and read it later in MATLAB. |
||||
|
|
|
Try this MEX file for ACTUALLY calling Python from MATLAB not the other way around as others suggest. It provides fairly decent integration : http://algoholic.eu/matpy/ You can do something like this easily:
|
|||||||
|
|
As @dgorissen said, Jython is the easiest solution. Just install Jython from the homepage. Then:
See the documentation for some examples. Beware: I never actually worked with Jython and it seems that the standard library one may know from CPython is not fully implemented in Jython! Small examples I tested worked just fine, but you may find that you have to prepend your Python code directory to |
|||||||||||||
|
|
The simplest way to do this is to use matlab's system function: http://www.mathworks.com/help/techdoc/ref/system.html So basically, you would execute a python function on matlab as you would do on command prompt (windows), or shell (linux):
The above is for simply running a python file. If you wanted to run a python function (and give it some arguments), then you would need something like:
For a concrete example, take the python code in Adrian's answer to this question, and save it to a python file, i.e. test.py. Then place this file in your matlab directory and run the following command on matlab:
And you will get as your output 4 or 2^2. Note: Matlab looks in the current matlab directory for whatever python file you specify with the system command. This is probably the simplest way to solve your problem, as you simply use an existing function in matlab to do your bidding. |
|||
|
|
Stumbled across this question, my $0.02: since Matlab seamlessly integrates with Java you can use Jython to write your script and call that from Matlab (you may have to add a thin pure java wrapper to actually call the jython). Never tried it but cant see why it wont work. |
||||
|
|
|
I've adapted the perl.m to python.m and attached this for reference for others but I can't seem to get any output from the python scripts to be returned to the matlab variable :( Here is my M-File, note I point directly to the Python folder C:\python27_64 in my code, this would change on your system.
EDIT :Worked out my problem the original perl.m points to a perl installation in the matlab folder by updating PATH then calling perl. The function above points to my python install. When I called my function.py it was in a different directory and called other files in that directory, these where not reflected in the PATH, I had to easy_install my python files into my python distro. (This may be obvious to pro's but I struggled a bit) |
||||
|
|
|
This seems to be a suitable method to "tunnel" functions from python to matlab: http://code.google.com/p/python-matlab-wormholes/ The big advantage is that you can handle ndarrays with it, which is not possible by the standard output of programs, as suggested before. (Please correct me, if you think this is wrong - it would save me a lot of trouble :-) ) Greetings! |
|||
|
|
|
A little known (and little documented) fact about Matlab's
any subsequent |
|||||||||||||
|
|
Since python is a better glue language, it may be easier to call the matlab part of your program from python instead of vice-versa. Check out: http://mlabwrap.sourceforge.net/ |
|||
|
|