how to add multiple data files in .exe-file using system command?
Show older comments
I got an filed called function.exe that I would like to run with Matlab. This file needs three data files to run the program: track.dat, grid.dat and info.dat. I know how to add a single data file using the matlab command system:
status=system(['function.exe<','track.dat'])
When i try the function below the response of matlab is "The system cannot find the file specified"
status=system(['function.exe<','track.dat','grid.dat','info.dat'])
Does someone know how to add multiple input files in an .exe-file?
Accepted Answer
More Answers (0)
Categories
Find more on Database Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!