Re: [Tutor] Running another program from Python

2007-07-20 Thread Carlos Daniel Ruvalcaba Valenzuela
There is also os.system which should work in a similar way as Matlab system. You pass a string with the command and arguments. The downside of system is that it opens an entire shell and environment for the program being run, you only have the return value from the application. Other options can b

[Tutor] Running another program from Python

2007-07-20 Thread Chris Smith
Howdy, I am working on some research. I'm trying to optimize the performance of an antenna. For the simulation of the antenna it would be easiest to use an antenna software package that I have in my lab. I know that Matlab can call the antenna software through a command called system. Matlab a