How can i pass command line arguments to a standalone MATLAB executable running on Linux/UNIX? I need to compile my MATLAB script as a standalone file that can be run on a machine without matlab present. It needs to be able to work in a way similar to C's argv[], where you do the following:
COMMAND LINE:
myfile argument1.txt argument2.txt
where argument 1 and 2 are the input and output files.
The exact syntax doesn't matter, but it should work like argv[]. I really need help with this. A function that could do this would be appreciated.