1
vote
2answers
140 views

Running Scilab from pexpect

I am trying to run scilab using the pexpect module with the following code: import pexpect c=pexpect.spawn('scilab-adv-cli -nb') c.expect('-->') ...
0
votes
1answer
197 views

Running a process remotely using Python

Is it possible to run a System process remotely , i.e. in the background using python? For e.g. I ave Scilab installed on my system, now I do something like this xx= ...
2
votes
2answers
2k views

ipython -pylab debugging: Can I stop the execution at a specific line and drop into the shell?

When writing python code (mostly numpy + matplotlib), I usually just type the code in vim and run the program to test it: python2 foo.py Occasionally, when this is not sufficient and I need to ...
3
votes
2answers
3k views

Porting matlab functions to scilab. How to use symbolic?

I'm porting some matlab functions to scilab. The cool thing is that there is a conversion toolbox that make things very easy. The problem is I did not find the counter part to the syms function, and ...