Is there a way to run a Matlab.m file from Python 2.7 Shell or a .py code? I tried using the following code:
import os
os.chdir(r'D:\The_folder_where_the_file_is')
os.startfile("The_desired_Matlab_file.m")
but then , it just opens the .m file, without running it ( as if when you press F5 in Editor Matlab).What shall i do ?
(I've already downloaded pymat and win32, if that helps)