How to run executable file (.exe) with input information using MATLAB
Ältere Kommentare anzeigen
Hi everyone,
I want use system to run my executable file (add_grd.exe) with input information (file 1 ,file 2 and output file). Usually i use system to run without any input and automatically run.But for this .exe , i need to type the info.How i can do that? Here is the link for the data (1.grd , 2.grd) and exe file.
https://www.dropbox.com/sh/qyccx30i2nhzyze/AAACK65UTBK5KmHiLkO3biQ7a?dl=0
Antworten (1)
Stephen23
am 7 Aug. 2018
0 Stimmen
Add the arguments to the character vector:
2 Kommentare
system('someCommand inputOne inputTwo')
You could generate the character vector using concatenation or sprintf.
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!