0 votes
in Matlab by
Can Matlab Run Without Graphics?

1 Answer

0 votes
by
At times scripts need to run without displaying the plots.

 By doing this, the script statement need not be commented.

 When working from home, running graphics over the network may be too slow.

 To perform the process, add the following lines of code:

%setenv DISPLAY /dev/null % MATLAB.

 By using these simple tricks, we can run MATLAB without graphics.

Related questions

+1 vote
asked Jul 30, 2020 in Matlab by Robindeniel
+2 votes
asked Aug 4, 2020 in Matlab by Robindeniel
...