Filter löschen
Filter löschen

can I call dosbox from inside matlab?

1 Ansicht (letzte 30 Tage)
Matthew
Matthew am 27 Feb. 2013
I have an ancient piece of software that I am currently forced to deal with. It runs in dosbox (32-bit emulation) on my 64-bit machine. Can I call dosbox from inside matlab and then send commands to the dos prompt? If I can call dosbox, I might be able to have matlab write a.bat file that could then run.
I don't even have an idea how to get started, but I thought someone might.
Thanks

Akzeptierte Antwort

grapevine
grapevine am 27 Feb. 2013

Weitere Antworten (1)

Jason Ross
Jason Ross am 27 Feb. 2013
Does command line redirection to pass an input file via the system command work?
myexe.exe < c:\temp\inputs.txt
You should be able to see if the "<" operator works outside of MATLAB to provide the input to dosbox, then get it working in a regular command shell, then a system() command in MATLAB where you put what works in command shell.
You can also try generating the inputs.txt file in MATLAB before you run it if you need to change inputs.
Another option -- if you call a 32-bit command shell (on 64-bit, this is in c:\windows\SysWoW64\cmd.exe) can you bypass dosbox and access your program? You might be able to eliminate at least one layer of redirection.
  1 Kommentar
Matthew
Matthew am 4 Mär. 2013
Sorry everyone, your response notifications were getting spammed. I will try to get at this soon. Alas Jason, the program will not run in a 32-bit command shell. A very sad circumstance.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by