Skip to main content

A python interface to MATLAB

Project description

Python interface to MATLAB (pymatlab)

This package lets python users interface and communicate with MATLAB from python. Pymatlab makes it easier for users to migrate from a large MATLAB codebase to python scripts - one step at a time - by using old MATLAB scripts.

The package uses Numpy’s ndarrays and translates them into MATLAB’s mxarrays using Numpy’s c-api and Matlab mx library. The interface to MATLAB’s workspace in done through MATLAB’s engine library.

Download

Downloading is possible from PyPi and SourceForge pymatlab files. Since pymatlab is hosted at SourceForge the latest development version is avalable from subversion.

Installing

When installing from source distribution the include_dir and library_dir in setup.cfg needs to be altered. Sample configurations for different platforms are avalable in the package.

Preparing to use pymatlab

On UNIX like systems let the system administrator add the MATLAB library directories in ldconfig. If you don’t have root access set the environmental variable LD_LIBRARY_PATH to correct path where pymatlab can find MATLAB’s libraries (libmx and libeng). On my system with MATLAB installed in /opt/matlab I have put this line in my .bashrc:

export LD_LIBRARY_PATH=/opt/matlab/bin/glnxa64:$LD_LIBRARY_PATH

On Windows make sure the Matlab DLLs are in your “Path” environment variable.

Requirements

  • Matlab

    Versions 2009a and 2010a verified. Presumably any version?

  • Numpy

    Any version? tested on version 1.3.0.

Limitations

The current version lets you transfer double precision matrixes of any rank. Any other types will probably fail and give unpredictable results.

Using pymatlab

First import:

>>> from pymatlab.matlab import MatlabSession

Initialise the interpretor, an optional argument is a string to launch matlab:

>>> session = MatlabSession()
>>> session.close()

Now with optional parameters:

>>> session = MatlabSession('matlab -nojvm -nodisplay')

Create an numpy-array to start the work.

>>> from numpy.random import randn
>>> a = randn(20,10,30)

Send the numpy array a to the MATLAB Workspace to the variable ‘A’

>>> session.putvalue('A',a)

Do something in matlab in MATLAB with variable A. Sucessfull commands return an empty string - if MATLAB generates an error the returning string holds the error message

>>> session.run('B=2*A')
>>> session.run('C')
Traceback (most recent call last):
    ...
RuntimeError: Error from Matlab: Error: MATLAB:UndefinedFunction with message: Undefined function or variable 'C'.
 end.

A trick to make larger scripts more failsafe with regards to syntax errors. Send a script to a string variable and run it with eval().

>>> mscript = """D = A
... for i=1:10
...    D = 2*D
... end
... """
>>> session.putstring('MSCRIPT',mscript)
>>> session.run('eval(MSCRIPT)')

To retrive the variable back to python:

>>> b = session.getvalue('B')
>>> (2*a==b).all()
True

Don’t forget to close MATLAB.

>>> session.close()

Bugs, support and feature requests

All request for support like bugfixing and installation support or feature requests are directed to the SourceForge tracker for pymatlab.

Please consider to support us in our efforts by donating to pymatlab. Your donations will be used to buy hardware and software licenses to be able to continue to develop this package.

HISTORY

2010-04-18? pymatlab 0.1.3

Run now throws exception RuntimeError on erros. A critical bug was fixed concernings numpys C memory alignment and MATLAB’s Fortran memory alignment in matrices.

2010-04-09 pymatlab 0.1.2

Bugfixes for 32-bit machines. Closed some memory leaks.

2010-02-26 pymatlab 0.1.1

Added the missing MANIFEST.in file to include the docs/ directory. And some small changes in the README.txt to work with restructured text.

2010-02-25 pymatlab 0.1.0

This first version om pymatlab including lots of potential memory leaks. The following features ships with this version:

  • running commands in the Matlab command interpretor.

  • Placing double precision matrices with arbitrary dimensions on the MATLAB workspace from numpy arrays.

  • Retrive double precision matrices from MATLAB workspace to numpy arrays.

  • Place string variables on MATLAB workspace.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymatlab-0.1.3.tar.gz (22.4 kB view hashes)

Uploaded Source

Built Distributions

pymatlab-0.1.3-py2.6-win32.egg (13.4 kB view hashes)

Uploaded Source

pymatlab-0.1.3-py2.6-linux-x86_64.egg (23.1 kB view hashes)

Uploaded Source

pymatlab-0.1.3-py2.6-linux-i686.egg (21.9 kB view hashes)

Uploaded Source

pymatlab-0.1.3-py2.5-linux-x86_64.egg (22.8 kB view hashes)

Uploaded Source

pymatlab-0.1.3-py2.5-linux-i686.egg (21.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page