Skip to content

v0.1.1

Pre-release
Pre-release

Choose a tag to compare

@mducle mducle released this 24 Mar 10:17
· 15 commits to main since this release
12e90de

Initial public beta of libpymcr

Basic support for running compiled Matlab apps within Python. Example:

from libpymcr import _libpymcr
m = _libpymcr('/path/to/ctf')
m.magic(3)

would yield:

array([[8., 1., 6.],
       [3., 5., 7.],
       [4., 9., 2.]])

if you included the magic function in your ctf archive.

There is a gateway function call.m which if you include in your ctf archive
will allow any Matlab built-in functions to be called (internally using feval).

libpymcr runs on Python 3.7 -- 3.11, and Matlab releases R2020a -- R2022b.