Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/finsberg/matlab_compiler
Examples of how to compile Matlab code into a python library and how to run the compiled code from python.
https://github.com/finsberg/matlab_compiler
Last synced: about 1 month ago
JSON representation
Examples of how to compile Matlab code into a python library and how to run the compiled code from python.
- Host: GitHub
- URL: https://github.com/finsberg/matlab_compiler
- Owner: finsberg
- License: bsd-3-clause
- Created: 2018-09-21T17:47:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-28T08:59:09.000Z (over 6 years ago)
- Last Synced: 2024-11-12T09:44:20.996Z (3 months ago)
- Language: Dockerfile
- Size: 85 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Matlab compiler for python
[Matlab](https://se.mathworks.com/products/matlab.html) is the number
one choice for many researchers within the scientific computing
community. There many reasons for this, for example the fact that
Matlab is a commercial software provides confidence that the core
functionality is robust and contains few bugs.Today we see a shift on the software side towards open source
alternatives such as [python](https://www.python.org). So can we take
out old, robust Matlab code and integrate that into our new python
library? Yes we can! And, it is possible to run that code without
buying an expensive a Matlab license? Yes, that is possible!
In this repo I will show you how.* [Installation instructions](docs/install.md)
* [The Library Compiler](docs/library_compiler.md)
* [Running Matlab in python](docs/running_python.md)
* [Magic Square example](examples/magic_square/README.md)
* [O'Hara Rudy Model example](examples/ohara_rudy/README.md)