A module to call MATLAB from Python
Project description
MATLAB Engine API for Python
The MATLAB® Engine API for Python® provides a package to integrate MATLAB functionality directly with a Python application, creating an interface to call functions from your MATLAB installation from Python code.
Requirements
Required MathWorks Products
- MATLAB release R2022b
Required 3rd Party Products
- Python 3.8, 3.9, or 3.10
- Supported Python versions by MATLAB release can be found here.
Install
Windows
MATLAB Engine API for Python can be installed directly from the Python Package Index.
$ python -m pip install matlabengine==9.13.11
Linux®
Prior to installation, check the default install location of MATLAB by calling matlabroot
in a MATLAB Command Window. By default, Linux installs MATLAB at:
/usr/local/MATLAB/R2022b
When MATLAB is not installed in the default location, the bin/architecture directory within the MATLAB root directory must be added to an environment variable. The path can be added to the environment variable within the shell startup configuration file (for example, .bashrc for bash shell or .tcshrc for tcsh).
# in .bashrc
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<matlabroot>/bin/glnxa64
# in .tcshrc
setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:<matlabroot>/bin/glnxa64
MATLAB Engine API for Python can be installed directly from the Python Package Index.
$ python -m pip install matlabengine==9.13.11
macOS
Prior to installation, check the default install location of MATLAB by calling matlabroot
in a MATLAB Command Window. By default, macOS installs MATLAB at:
/Applications/MATLAB_R2022b.app
When MATLAB is not installed in the default location, the bin/architecture directory within the MATLAB root directory must be added to an environment variable. The path can be added to the environment variable within the shell startup configuration file (for example, .bashrc for bash shell or .tcshrc for tcsh).
# in .bashrc
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:<matlabroot>/bin/maci64
# in .tcshrc
setenv DYLD_LIBRARY_PATH ${DYLD_LIBRARY_PATH}:<matlabroot>/bin/maci64
MATLAB Engine API for Python can be installed directly from the Python Package Index.
$ python -m pip install matlabengine==9.13.11
Getting Started
- Start Python.
- Import the
matlab.engine
package into the Python session. - Start a new MATLAB process by calling
start_matlab
. Thestart_matlab
function returns a Python object which enables you to pass data and call functions executed by MATLAB.
>>> import matlab.engine
>>> eng = matlab.engine.start_matlab()
>>> eng.sqrt(4.0)
2.0
- Call either the
exit
orquit
function to stop the engine. Exiting Python with an engine running stops the engine and its MATLAB processes.
>>> eng.quit()
See Start and Stop MATLAB Engine for Python for advanced startup examples.
Examples
You can call any MATLAB function directly and return the results to Python.
>>> eng.plus(2, 3)
5
>>> eng.isprime(37)
True
>>> eng.gcd(100.0, 80.0, nargout=3)
(20.0, 1.0, -1.0)
See Call MATLAB Functions from Python for more usage examples.
Limitations
Limitations of the MATLAB Engine API for Python can be found here.
Troubleshooting
See Troubleshoot MATLAB Errors in Python for troubleshooting assistance.
License
The license is available in the LICENSE.txt file within this repository.
Support
Technical issues or enhancement requests can be submitted here.
Copyright © 2022 MathWorks, Inc. All rights reserved.
Linux® is the registered trademark of Linus Torvalds in the U.S. and other countries.
Mac OS is a trademark of Apple Inc., registered in the U.S. and other countries.
"Python" and the Python logos are trademarks or registered trademarks of the Python Software Foundation, used by MathWorks with permission from the Foundation.
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 Distribution
File details
Details for the file matlabengine-9.13.11.tar.gz
.
File metadata
- Download URL: matlabengine-9.13.11.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4160c0b30e498d6ffd7cf19f8ec437cacfe6729fab8b21960527ea710ee21ae6 |
|
MD5 | fa7c048ba54ae997d567f669307263c4 |
|
BLAKE2b-256 | e557366d40e9aec14f467c92c38fe7c1b149dc9bf39ebde235d32e214bd25f98 |