I install matlab.engine on python3.7 (Ubuntu) as explained in the matlab site:
cd "matlabroot/extern/engines/python"
python setup.py install
But when I try to use in Pycharm as:
import matlab.engine
eng = matlab.start_matlab()
tf = eng.isprime(37)
print(tf)
Come the error "No module named 'matlab.engine'; 'matlab' is not a package" I have a lot of matlab function that are not so easy to translate to python. If I could just open then in python3.7 via Pycharm could be much mode easy.