Hello
I am working on project In django(Python web framework) where I want to call matlab file(.m ) file from the server.
I tried subprocess module from the python
>>> p = Popen("/Applications/MATLAB_R2009a.app/bin/matlab.exe -nojvm -nosplash -nodisplay -r /home/spatil/LineShapeKin_Simulation_4/LineShapeKin_Simulation_4.1/Matlab_code/Simulate.m",stdout=PIPE)
But its giving me following error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/sw/lib/python2.6/subprocess.py", line 595, in __init__
errread, errwrite)
File "/sw/lib/python2.6/subprocess.py", line 1092, in _execute_child
Please give me some direction....
Snehal