I have a batch file that starts an executable that is supposed to
- Run a Matlab script and wait until it stops
- Run an exe that does some work, print some output, and saves some data to disk and wait until it stops
- Run another Matlab script
Item number one works fine. Item number two does not show console output. How can I fix that.
This is my script
start /wait matlab -r start.m
start /wait "c/hello.exe"
start matlab -r finish.m