├── .github └── workflows │ ├── python-publish.yml │ └── qualify_25a.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── pyproject.toml ├── python ├── setup.py ├── src └── matlab │ ├── __init__.py │ └── engine │ ├── __init__.py │ ├── _arch.txt │ ├── basefuture.py │ ├── engineerror.py │ ├── enginehelper.py │ ├── enginesession.py │ ├── fevalfuture.py │ ├── futureresult.py │ ├── matlabengine.py │ └── matlabfuture.py └── test └── tInstall.m /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/qualify_25a.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/.github/workflows/qualify_25a.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/setup.py -------------------------------------------------------------------------------- /src/matlab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/src/matlab/__init__.py -------------------------------------------------------------------------------- /src/matlab/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/src/matlab/engine/__init__.py -------------------------------------------------------------------------------- /src/matlab/engine/_arch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/src/matlab/engine/_arch.txt -------------------------------------------------------------------------------- /src/matlab/engine/basefuture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/src/matlab/engine/basefuture.py -------------------------------------------------------------------------------- /src/matlab/engine/engineerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/src/matlab/engine/engineerror.py -------------------------------------------------------------------------------- /src/matlab/engine/enginehelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/src/matlab/engine/enginehelper.py -------------------------------------------------------------------------------- /src/matlab/engine/enginesession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/src/matlab/engine/enginesession.py -------------------------------------------------------------------------------- /src/matlab/engine/fevalfuture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/src/matlab/engine/fevalfuture.py -------------------------------------------------------------------------------- /src/matlab/engine/futureresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/src/matlab/engine/futureresult.py -------------------------------------------------------------------------------- /src/matlab/engine/matlabengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/src/matlab/engine/matlabengine.py -------------------------------------------------------------------------------- /src/matlab/engine/matlabfuture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/src/matlab/engine/matlabfuture.py -------------------------------------------------------------------------------- /test/tInstall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/matlab-engine-for-python/HEAD/test/tInstall.m --------------------------------------------------------------------------------