executable in Matlab help
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jeff Cichalski
el 19 de En. de 2016
Comentada: Azade Jamshidi
el 9 de Dic. de 2018
Trying to run an executable dos program using Matlab with an input and have it continously inserting new inputs into the open exe program.
the line that opens the program is as follows:
dos(['Myexecutable.exe ' h.input_filename ' &']);
while isempty(dir(h.output_filename))
pause(1);
end
Every time this runs it opens a new window and never closes the old one. I need to eventually get this to iterate for an optimization command so I'll need the run the program while putting in thousands of inputs automatically. How can I insert an input in an already open .exe file?
0 comentarios
Respuesta aceptada
Matthew
el 19 de En. de 2016
Editada: per isakson
el 22 de Ag. de 2016
Jeff,
There's a couple of ways to do this.
The way I've personally used most successfully is to use the System.Diagnostics.Process object. If it works, it tends to be more readable and accessible than directly making system calls.
proc = System.Diagnostics.Process;
proc.StartInfo.FileName = fullfile(exePath,exeName);
proc.StartInfo.Arguments = num2str(Port);
proc.Start(); % Start the process
To interface with the process, you can do a couple of different things:
1) My processes tend to be able to open TCP or UDP ports that I can communicate over, which is why my example passes a 'Port' argument into the process.
2) Alternatively you can use the process.standardinput streamwriter object if your proccess supports it.
https://msdn.microsoft.com/en-us/library/system.diagnostics.process.standardinput%28v=vs.110%29.aspx
3) The most work is to use robo calls - I haven't actually done this, but it looks like it may be feasible.
1 comentario
Azade Jamshidi
el 9 de Dic. de 2018
Dears,
I used follow commands for my case as you comment.
proc = System.Diagnostics.Process;
proc.StartInfo.FileName = fullfile(exePath,exeName);
proc.StartInfo.Arguments = num2str(port);
proc.Start(); % Start the process
It run my executable program. But it is important to me that my application (executable program) be closed after finishing run. There is any command for fixing this?
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!