MATLAB runtime for Python: cell arrays, structs, sprintf, column-major flatten. The package that makes ported MATLAB code actually run.
Project description
matlabtopython-compat
The Python runtime for ported MATLAB code.
When you translate MATLAB to Python, some idioms don't map cleanly to numpy or scipy alone:
- Cell arrays with grow-on-write semantics
- Structs that support both
s.nameands.('name')access sprintfcycling format specifiers through vector argumentsX(:)column-major flatten (numpy defaults to row-major)[sorted_vals, idx] = sort(X)returning a pair
This package fills those gaps so ported code runs without hand-editing every MATLAB-ism into a numpy equivalent. Pair it with the online converter at mtopython.com for a zero-edit path, or use it directly if you're porting MATLAB by hand.
Install
pip install matlabtopython-compat
Optional .mat file I/O adds a scipy dependency:
pip install "matlabtopython-compat[mat-io]"
What's in it
| Helper | MATLAB equivalent | Why it's here |
|---|---|---|
CellArray |
c = {a, b, c} |
Lists work for most cells but miss c{1} = ... grow-on-write semantics. |
Struct |
s.name, s.(name) |
Combines attribute + dict access in one object. |
sprintf |
sprintf('%d\n', [1 2 3]) |
Vector arguments cycle through format specifiers — Python's % doesn't. |
fprintf |
fprintf(fid, fmt, args) |
Same, with file-handle form. |
tic / toc |
tic; ... toc |
MATLAB-compatible timing output. |
flatten_fortran |
X(:) |
Column-major flatten (numpy defaults to row-major). |
sort_with_index |
[s, i] = sort(X) |
Returns both sorted values and indices. |
Example
from matlabtopython_compat import CellArray, Struct, sprintf, tic, toc
# Cells with grow-on-write
c = CellArray()
c.cell_set(1, 'Alice')
c.cell_set(2, 42)
print(c.cell_get(1)) # 'Alice'
# Struct with both access styles
s = Struct(name='Alice', age=30)
print(s.name, s['age'])
# Vector-argument sprintf
print(sprintf('%d\n', [1, 2, 3])) # '1\n2\n3\n'
# MATLAB-style timing
t0 = tic()
# ... code ...
toc() # "Elapsed time is X seconds."
License
MIT. No runtime calls to external services; everything is pure Python.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file matlabtopython_compat-0.1.1-py3-none-any.whl.
File metadata
- Download URL: matlabtopython_compat-0.1.1-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bfd4c343b427f1c559c67ea68ddf101951d9370a94c0c07f096aa6d1b094782
|
|
| MD5 |
adf06279def3121ddfc9df1bb1152ebe
|
|
| BLAKE2b-256 |
947280413d571722e5b8f0161a7cf780d6437e93d362c57c7ee4b6ff1acf5bcb
|