I'm using MATLAB in a Makefile to convert some data to eps. But it's displaying it's logo all over the place.
For instance, when I type into bash:
matlab -nojvm -nodisplay -nosplash -r "display('derp');exit"
I get:
< M A T L A B (R) >
Copyright 1984-2012 The MathWorks, Inc.
R2012a (7.14.0.739) 64-bit (glnxa64)
February 9, 2012
To get started, type one of these: helpwin, helpdesk, or demo.
For product information, visit www.mathworks.com.
derp
I understand that MATLAB isn't python that can just
python -c "print 'zoom'"
but is there any way to make it stop printing the MATLAB logo?