libermate
libermate copied to clipboard
DEPRECATED use https://github.com/victorlei/smop instead LiberMate - A MATLAB to Python (SciPy/NumPy) Translator
In order for your package to be useful for others you should really refactor your project structure to be in line with the [PyPA recommendations](https://packaging.python.org/en/latest/distributing.html) so it can be installed...
Good morning, I have a regular error in the execution of libermate. When I run from the terminal this error appears for many file "syntax error::...:.." : Opening File Function:Molecular...
This if main.m, and it calls another file addTwo.m main.m a = 20; b = 30; c = addTwo(a,b); disp(c); addTwo.m `function addition = addTwo(a,b) addition = a+b;` If I...
Matlab seems to allow variable names such as "in" but in python those words are protected.
Thanks for the cool library `x=sqrt(a^2+b^2);` works fine, `x=sqrt(a^-2);` chokes