Displaying MATLAB output in linux terminal
I am running a MATLAB script in the background using the command line:
nohup matlab -nodisplay < scriptname.m > /dev/null &
The script integrates an ODE with N sets of different initial conditions, i.e. it loops N times. It takes days to run so I would like to output the progress, say every 10% completion. I've written a simple if statement:
if mod(n_th_loop,complete_out) == 0 fprintf('%2.2f %% complete', 100*n_th_loop/N); end
When running the script inside MATLAB, the percentage completion is printed out as I intended. However, I cannot get anything to print out into the linux terminal when I run the script in the background. I have also tried using disp(...), but have exactly the same problem.
Is there any way to run a MATLAB script in the background, but print messages to the linux terminal?
Thanks, James
0 Kommentare
Akzeptierte Antwort
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!